Skip to content
This repository was archived by the owner on Dec 25, 2022. It is now read-only.

Commit 475657a

Browse files
mrkctlinusg
authored andcommitted
Stub out notify_server_did_request_fullscreen_window
1 parent af4b6bc commit 475657a

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

WebContentView.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -954,6 +954,11 @@ Gfx::IntRect WebContentView::notify_server_did_request_minimize_window()
954954
return {};
955955
}
956956

957+
Gfx::IntRect WebContentView::notify_server_did_request_fullscreen_window()
958+
{
959+
return {};
960+
}
961+
957962
void WebContentView::notify_server_did_request_file(Badge<WebContentClient>, String const& path, i32 request_id)
958963
{
959964
auto file = Core::File::open(path, Core::OpenMode::ReadOnly);

WebContentView.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ class WebContentView final
148148
virtual Gfx::IntSize notify_server_did_request_resize_window(Gfx::IntSize const&) override;
149149
virtual Gfx::IntRect notify_server_did_request_maximize_window() override;
150150
virtual Gfx::IntRect notify_server_did_request_minimize_window() override;
151+
virtual Gfx::IntRect notify_server_did_request_fullscreen_window() override;
151152
virtual void notify_server_did_request_file(Badge<WebContentClient>, String const& path, i32) override;
152153

153154
signals:

0 commit comments

Comments
 (0)