LibWebView+Ladybird: Move preferred color scheme to ViewImplementation

This commit is contained in:
Linus Groh
2023-01-12 20:44:42 +00:00
committed by Andreas Kling
parent 5bf5697f16
commit f183745f4e
6 changed files with 7 additions and 13 deletions

View File

@@ -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();