summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/OutOfProcessWebView.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2022-02-06 19:03:13 +0100
committerAndreas Kling <kling@serenityos.org>2022-02-06 22:13:13 +0100
commit65bd4477dbad5dbdb8a30e2e70a4c0e0ec5e9c2b (patch)
treeeed5df8938f72e59afa04a651cfa7543813208ca /Userland/Libraries/LibWeb/OutOfProcessWebView.h
parenta062e803c5552c90ecb2fd7ae4264297b417495c (diff)
downloadserenity-65bd4477dbad5dbdb8a30e2e70a4c0e0ec5e9c2b.zip
LibWeb: Plumb OOPWV focus state across the IPC boundary
This makes focus outlines show up in OOPWV at last! :^)
Diffstat (limited to 'Userland/Libraries/LibWeb/OutOfProcessWebView.h')
-rw-r--r--Userland/Libraries/LibWeb/OutOfProcessWebView.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/OutOfProcessWebView.h b/Userland/Libraries/LibWeb/OutOfProcessWebView.h
index 1242ca0dc3..1f89dccbf8 100644
--- a/Userland/Libraries/LibWeb/OutOfProcessWebView.h
+++ b/Userland/Libraries/LibWeb/OutOfProcessWebView.h
@@ -102,6 +102,8 @@ private:
virtual void keyup_event(GUI::KeyEvent&) override;
virtual void theme_change_event(GUI::ThemeChangeEvent&) override;
virtual void screen_rects_change_event(GUI::ScreenRectsChangeEvent&) override;
+ virtual void focusin_event(GUI::FocusEvent&) override;
+ virtual void focusout_event(GUI::FocusEvent&) override;
// ^AbstractScrollableWidget
virtual void did_scroll() override;