summaryrefslogtreecommitdiff
path: root/Userland/Utilities
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/Utilities
parent4717d645d3112967e6e7da1dbc5d5409f8312fb2 (diff)
downloadserenity-a9f8d4eadaf792eb6907a6ce7302acfe623635f6.zip
LibWeb+LibWebView+WebContent+Ladybird: Add IPC call that opens new tab
Diffstat (limited to 'Userland/Utilities')
-rw-r--r--Userland/Utilities/headless-browser.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Utilities/headless-browser.cpp b/Userland/Utilities/headless-browser.cpp
index 5ce84c9c39..6cbe8fee1e 100644
--- a/Userland/Utilities/headless-browser.cpp
+++ b/Userland/Utilities/headless-browser.cpp
@@ -132,6 +132,7 @@ private:
DeprecatedString notify_server_did_request_cookie(Badge<WebView::WebContentClient>, const URL&, Web::Cookie::Source) override { return {}; }
void notify_server_did_set_cookie(Badge<WebView::WebContentClient>, const URL&, Web::Cookie::ParsedCookie const&, Web::Cookie::Source) override { }
void notify_server_did_update_cookie(Badge<WebView::WebContentClient>, Web::Cookie::Cookie const&) override { }
+ String notify_request_open_new_tab(Badge<WebView::WebContentClient>) override { return {}; }
void notify_server_did_close_browsing_context(Badge<WebView::WebContentClient>) override { }
void notify_server_did_update_resource_count(i32) override { }
void notify_server_did_request_restore_window() override { }