summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Ladybird/WebContentView.cpp5
-rw-r--r--Ladybird/WebContentView.h2
-rw-r--r--Userland/Libraries/LibWebView/OutOfProcessWebView.cpp5
-rw-r--r--Userland/Libraries/LibWebView/OutOfProcessWebView.h1
-rw-r--r--Userland/Libraries/LibWebView/ViewImplementation.cpp5
-rw-r--r--Userland/Libraries/LibWebView/ViewImplementation.h2
6 files changed, 7 insertions, 13 deletions
diff --git a/Ladybird/WebContentView.cpp b/Ladybird/WebContentView.cpp
index c30ba3bc4d..1daa0c3c68 100644
--- a/Ladybird/WebContentView.cpp
+++ b/Ladybird/WebContentView.cpp
@@ -517,11 +517,6 @@ void WebContentView::show_inspector()
inspect_dom_tree();
}
-void WebContentView::set_preferred_color_scheme(Web::CSS::PreferredColorScheme color_scheme)
-{
- client().async_set_preferred_color_scheme(color_scheme);
-}
-
void WebContentView::update_zoom()
{
client().async_set_device_pixels_per_css_pixel(m_device_pixel_ratio * m_zoom_level);
diff --git a/Ladybird/WebContentView.h b/Ladybird/WebContentView.h
index ee9c8b73ed..c66864a5c7 100644
--- a/Ladybird/WebContentView.h
+++ b/Ladybird/WebContentView.h
@@ -95,8 +95,6 @@ public:
Gfx::IntPoint to_content(Gfx::IntPoint) const;
Gfx::IntPoint to_widget(Gfx::IntPoint) const;
- void set_preferred_color_scheme(Web::CSS::PreferredColorScheme);
-
virtual void notify_server_did_layout(Badge<WebContentClient>, Gfx::IntSize content_size) override;
virtual void notify_server_did_paint(Badge<WebContentClient>, i32 bitmap_id) override;
virtual void notify_server_did_invalidate_content_rect(Badge<WebContentClient>, Gfx::IntRect const&) override;
diff --git a/Userland/Libraries/LibWebView/OutOfProcessWebView.cpp b/Userland/Libraries/LibWebView/OutOfProcessWebView.cpp
index 2ea58fa4f4..6c69e01e54 100644
--- a/Userland/Libraries/LibWebView/OutOfProcessWebView.cpp
+++ b/Userland/Libraries/LibWebView/OutOfProcessWebView.cpp
@@ -577,11 +577,6 @@ void OutOfProcessWebView::set_proxy_mappings(Vector<DeprecatedString> proxies, H
client().async_set_proxy_mappings(move(proxies), move(mappings));
}
-void OutOfProcessWebView::set_preferred_color_scheme(Web::CSS::PreferredColorScheme color_scheme)
-{
- client().async_set_preferred_color_scheme(color_scheme);
-}
-
void OutOfProcessWebView::connect_to_webdriver(DeprecatedString const& webdriver_ipc_path)
{
client().async_connect_to_webdriver(webdriver_ipc_path);
diff --git a/Userland/Libraries/LibWebView/OutOfProcessWebView.h b/Userland/Libraries/LibWebView/OutOfProcessWebView.h
index b9911930a5..f212ba5528 100644
--- a/Userland/Libraries/LibWebView/OutOfProcessWebView.h
+++ b/Userland/Libraries/LibWebView/OutOfProcessWebView.h
@@ -43,7 +43,6 @@ public:
void set_content_filters(Vector<DeprecatedString>);
void set_proxy_mappings(Vector<DeprecatedString> proxies, HashMap<DeprecatedString, size_t> mappings);
- void set_preferred_color_scheme(Web::CSS::PreferredColorScheme);
void connect_to_webdriver(DeprecatedString const& webdriver_ipc_path);
void set_window_position(Gfx::IntPoint);
diff --git a/Userland/Libraries/LibWebView/ViewImplementation.cpp b/Userland/Libraries/LibWebView/ViewImplementation.cpp
index 3e55943b1f..e547191e81 100644
--- a/Userland/Libraries/LibWebView/ViewImplementation.cpp
+++ b/Userland/Libraries/LibWebView/ViewImplementation.cpp
@@ -61,6 +61,11 @@ void ViewImplementation::reset_zoom()
update_zoom();
}
+void ViewImplementation::set_preferred_color_scheme(Web::CSS::PreferredColorScheme color_scheme)
+{
+ client().async_set_preferred_color_scheme(color_scheme);
+}
+
DeprecatedString ViewImplementation::selected_text()
{
return client().get_selected_text();
diff --git a/Userland/Libraries/LibWebView/ViewImplementation.h b/Userland/Libraries/LibWebView/ViewImplementation.h
index 5ab594e90e..6ebbe7ce3b 100644
--- a/Userland/Libraries/LibWebView/ViewImplementation.h
+++ b/Userland/Libraries/LibWebView/ViewImplementation.h
@@ -38,6 +38,8 @@ public:
void zoom_out();
void reset_zoom();
+ void set_preferred_color_scheme(Web::CSS::PreferredColorScheme);
+
DeprecatedString selected_text();
void select_all();