1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 08:44:58 +00:00

LibWeb+WebContent: Port the did_request_named_cookie IPC to String

This commit is contained in:
Timothy Flynn 2024-01-26 11:20:10 -05:00 committed by Andreas Kling
parent 9b957ead13
commit c4820838bf
8 changed files with 8 additions and 8 deletions

View file

@ -463,7 +463,7 @@ Vector<Web::Cookie::Cookie> PageClient::page_did_request_all_cookies(URL const&
return client().did_request_all_cookies(url);
}
Optional<Web::Cookie::Cookie> PageClient::page_did_request_named_cookie(URL const& url, ByteString const& name)
Optional<Web::Cookie::Cookie> PageClient::page_did_request_named_cookie(URL const& url, String const& name)
{
return client().did_request_named_cookie(url, name);
}