summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWebView/ViewImplementation.h
diff options
context:
space:
mode:
authorAliaksandr Kalenik <kalenik.aliaksandr@gmail.com>2023-03-14 17:12:09 +0300
committerTim Flynn <trflynn89@pm.me>2023-03-16 13:17:37 -0400
commita9f8d4eadaf792eb6907a6ce7302acfe623635f6 (patch)
tree896d40f6cc7613707d84d3bdd8a6696ad3d9047f /Userland/Libraries/LibWebView/ViewImplementation.h
parent4717d645d3112967e6e7da1dbc5d5409f8312fb2 (diff)
downloadserenity-a9f8d4eadaf792eb6907a6ce7302acfe623635f6.zip
LibWeb+LibWebView+WebContent+Ladybird: Add IPC call that opens new tab
Diffstat (limited to 'Userland/Libraries/LibWebView/ViewImplementation.h')
-rw-r--r--Userland/Libraries/LibWebView/ViewImplementation.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWebView/ViewImplementation.h b/Userland/Libraries/LibWebView/ViewImplementation.h
index 958932d52d..4bde4ed607 100644
--- a/Userland/Libraries/LibWebView/ViewImplementation.h
+++ b/Userland/Libraries/LibWebView/ViewImplementation.h
@@ -98,6 +98,7 @@ public:
virtual DeprecatedString notify_server_did_request_cookie(Badge<WebContentClient>, const AK::URL& url, Web::Cookie::Source source) = 0;
virtual void notify_server_did_set_cookie(Badge<WebContentClient>, const AK::URL& url, Web::Cookie::ParsedCookie const& cookie, Web::Cookie::Source source) = 0;
virtual void notify_server_did_update_cookie(Badge<WebContentClient>, Web::Cookie::Cookie const& cookie) = 0;
+ virtual String notify_request_open_new_tab(Badge<WebContentClient>) = 0;
virtual void notify_server_did_close_browsing_context(Badge<WebContentClient>) = 0;
virtual void notify_server_did_update_resource_count(i32 count_waiting) = 0;
virtual void notify_server_did_request_restore_window() = 0;