diff options
author | Timothy Flynn <trflynn89@pm.me> | 2022-11-11 09:46:56 -0500 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-11-11 18:02:04 +0000 |
commit | c6a0888088998ce09b87a541237185a30b46bd7b (patch) | |
tree | 2c74a500aa6e30e83f2a85a0239b571a682097b3 /Userland/Services/WebContent/WebContentClient.ipc | |
parent | c77260c480f5b9b36171894ed11b4708dbbe8a05 (diff) | |
download | serenity-c6a0888088998ce09b87a541237185a30b46bd7b.zip |
LibWebView+WebContent: Add IPC to get a document's named cookie
Diffstat (limited to 'Userland/Services/WebContent/WebContentClient.ipc')
-rw-r--r-- | Userland/Services/WebContent/WebContentClient.ipc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Services/WebContent/WebContentClient.ipc b/Userland/Services/WebContent/WebContentClient.ipc index 72eb9ad973..3754e7bbaa 100644 --- a/Userland/Services/WebContent/WebContentClient.ipc +++ b/Userland/Services/WebContent/WebContentClient.ipc @@ -37,6 +37,7 @@ endpoint WebContentClient did_get_dom_node_properties(i32 node_id, String specified_style, String computed_style, String custom_properties, String node_box_sizing_json) =| did_change_favicon(Gfx::ShareableBitmap favicon) =| did_request_all_cookies(URL url) => (Vector<Web::Cookie::Cookie> cookies) + did_request_named_cookie(URL url, String name) => (Optional<Web::Cookie::Cookie> cookie) did_request_cookie(URL url, u8 source) => (String cookie) did_set_cookie(URL url, Web::Cookie::ParsedCookie cookie, u8 source) =| did_update_resource_count(i32 count_waiting) =| |