Ladybird: Stub out notify_server_did_request_fullscreen_window

This commit is contained in:
Marco Cutecchia 2022-11-12 18:14:35 +01:00 committed by Andrew Kaster
commit 5a9b891268
Notes: sideshowbarker 2024-07-17 02:39:40 +09:00
2 changed files with 6 additions and 0 deletions

View file

@ -954,6 +954,11 @@ Gfx::IntRect WebContentView::notify_server_did_request_minimize_window()
return {};
}
Gfx::IntRect WebContentView::notify_server_did_request_fullscreen_window()
{
return {};
}
void WebContentView::notify_server_did_request_file(Badge<WebContentClient>, String const& path, i32 request_id)
{
auto file = Core::File::open(path, Core::OpenMode::ReadOnly);