diff options
author | Timothy Flynn <trflynn89@pm.me> | 2021-07-14 08:32:55 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-07-14 17:16:39 +0200 |
commit | 2fda6ce1595f093c770063f6b597ebd30bd3db34 (patch) | |
tree | 01f07559d5fcdc1f9832c2b7c4a0fe6d64ad1e12 /Userland/Services/WebContent/ClientConnection.h | |
parent | 528574d9581b28b8e478cc41b156efe6bb3fd8d7 (diff) | |
download | serenity-2fda6ce1595f093c770063f6b597ebd30bd3db34.zip |
LibWeb: Add OOPWV IPC for retrieving selected text
Diffstat (limited to 'Userland/Services/WebContent/ClientConnection.h')
-rw-r--r-- | Userland/Services/WebContent/ClientConnection.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Services/WebContent/ClientConnection.h b/Userland/Services/WebContent/ClientConnection.h index 6ceb158597..2d87326497 100644 --- a/Userland/Services/WebContent/ClientConnection.h +++ b/Userland/Services/WebContent/ClientConnection.h @@ -51,6 +51,7 @@ private: virtual void inspect_dom_tree() override; virtual void js_console_initialize() override; virtual void js_console_input(String const&) override; + virtual Messages::WebContentServer::GetSelectedTextResponse get_selected_text() override; void flush_pending_paint_requests(); |