mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-23 00:19:18 +00:00
LibWeb: Implement CookieStore::get(name)
This commit is contained in:
parent
dc1b7b1925
commit
5545d38d7a
Notes:
github-actions[bot]
2025-08-08 17:12:25 +00:00
Author: https://github.com/IdanHo
Commit: 5545d38d7a
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5766
Reviewed-by: https://github.com/trflynn89 ✅
14 changed files with 174 additions and 17 deletions
|
@ -482,9 +482,14 @@ void PageClient::page_did_change_favicon(Gfx::Bitmap const& favicon)
|
|||
client().async_did_change_favicon(m_id, favicon.to_shareable_bitmap());
|
||||
}
|
||||
|
||||
Vector<Web::Cookie::Cookie> PageClient::page_did_request_all_cookies(URL::URL const& url)
|
||||
Vector<Web::Cookie::Cookie> PageClient::page_did_request_all_cookies_webdriver(URL::URL const& url)
|
||||
{
|
||||
return client().did_request_all_cookies(url);
|
||||
return client().did_request_all_cookies_webdriver(url);
|
||||
}
|
||||
|
||||
Vector<Web::Cookie::Cookie> PageClient::page_did_request_all_cookies_cookiestore(URL::URL const& url)
|
||||
{
|
||||
return client().did_request_all_cookies_cookiestore(url);
|
||||
}
|
||||
|
||||
Optional<Web::Cookie::Cookie> PageClient::page_did_request_named_cookie(URL::URL const& url, String const& name)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue