1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:57:35 +00:00

LibWebView+WebContent: Add IPC to update a document's cookie

This commit is contained in:
Timothy Flynn 2022-11-11 11:18:40 -05:00 committed by Linus Groh
parent 18abc6c85d
commit d202999853
6 changed files with 16 additions and 0 deletions

View file

@ -40,6 +40,7 @@ endpoint WebContentClient
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_cookie(URL url, Web::Cookie::Cookie cookie) =|
did_update_resource_count(i32 count_waiting) =|
did_request_restore_window() =|
did_request_reposition_window(Gfx::IntPoint position) => (Gfx::IntPoint window_position)