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

LibWebView+WebContent: Add IPCs to navigate the browser's history

This commit is contained in:
Timothy Flynn 2022-11-11 13:33:11 -05:00 committed by Linus Groh
parent f84b2e9e7d
commit 24fb7cd0ad
6 changed files with 48 additions and 0 deletions

View file

@ -11,6 +11,9 @@ endpoint WebContentClient
{
did_start_loading(URL url) =|
did_finish_loading(URL url) =|
did_request_navigate_back() =|
did_request_navigate_forward() =|
did_request_refresh() =|
did_paint(Gfx::IntRect content_rect, i32 bitmap_id) =|
did_invalidate_content_rect(Gfx::IntRect content_rect) =|
did_change_selection() =|