From 48e0789a17ee93873207b304f450330ec0d644f8 Mon Sep 17 00:00:00 2001 From: Aliaksandr Kalenik Date: Tue, 14 Mar 2023 07:05:57 +0300 Subject: WebContent: Add IPC call to get window handle from WebContent client --- Userland/Services/WebContent/ConnectionFromClient.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Userland/Services/WebContent/ConnectionFromClient.cpp') diff --git a/Userland/Services/WebContent/ConnectionFromClient.cpp b/Userland/Services/WebContent/ConnectionFromClient.cpp index 4e77df6bc8..e321205b7b 100644 --- a/Userland/Services/WebContent/ConnectionFromClient.cpp +++ b/Userland/Services/WebContent/ConnectionFromClient.cpp @@ -61,6 +61,11 @@ Web::Page const& ConnectionFromClient::page() const return m_page_host->page(); } +Messages::WebContentServer::GetWindowHandleResponse ConnectionFromClient::get_window_handle() +{ + return m_page_host->page().top_level_browsing_context().window_handle(); +} + void ConnectionFromClient::connect_to_webdriver(DeprecatedString const& webdriver_ipc_path) { // FIXME: Propagate this error back to the browser. -- cgit v1.2.3