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

Ladybird: Stub out history navigation WebView::ViewImplementation APIs

These were added for WebDriver, which doesn't have a Ladybird
implementation yet.
This commit is contained in:
Timothy Flynn 2022-11-11 14:17:55 -05:00 committed by Andrew Kaster
parent fcc0530e26
commit e592c7691e
2 changed files with 15 additions and 0 deletions

View file

@ -798,6 +798,18 @@ void WebContentView::notify_server_did_finish_loading(Badge<WebContentClient>, A
(void)url;
}
void WebContentView::notify_server_did_request_navigate_back(Badge<WebContentClient>)
{
}
void WebContentView::notify_server_did_request_navigate_forward(Badge<WebContentClient>)
{
}
void WebContentView::notify_server_did_request_refresh(Badge<WebContentClient>)
{
}
void WebContentView::notify_server_did_request_context_menu(Badge<WebContentClient>, Gfx::IntPoint const& content_position)
{
// FIXME