mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Ladybird: Stub out notify_server_did_request_fullscreen_window
This commit is contained in:
parent
e592c7691e
commit
5a9b891268
Notes:
sideshowbarker
2024-07-17 02:39:40 +09:00
Author: https://github.com/mrkct Commit: https://github.com/SerenityOS/serenity/commit/5a9b891268 Pull-request: https://github.com/SerenityOS/serenity/pull/16583 Reviewed-by: https://github.com/ADKaster Reviewed-by: https://github.com/awesomekling ✅ Reviewed-by: https://github.com/linusg
2 changed files with 6 additions and 0 deletions
|
@ -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);
|
||||
|
|
|
@ -148,6 +148,7 @@ public:
|
|||
virtual Gfx::IntSize notify_server_did_request_resize_window(Gfx::IntSize const&) override;
|
||||
virtual Gfx::IntRect notify_server_did_request_maximize_window() override;
|
||||
virtual Gfx::IntRect notify_server_did_request_minimize_window() override;
|
||||
virtual Gfx::IntRect notify_server_did_request_fullscreen_window() override;
|
||||
virtual void notify_server_did_request_file(Badge<WebContentClient>, String const& path, i32) override;
|
||||
|
||||
signals:
|
||||
|
|
Loading…
Reference in a new issue