mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 02:17:35 +00:00
WebContent: Add IPC call to set window handle from WebContent client
This commit is contained in:
parent
48e0789a17
commit
6d91d2fa50
4 changed files with 8 additions and 0 deletions
|
@ -66,6 +66,11 @@ Messages::WebContentServer::GetWindowHandleResponse ConnectionFromClient::get_wi
|
|||
return m_page_host->page().top_level_browsing_context().window_handle();
|
||||
}
|
||||
|
||||
void ConnectionFromClient::set_window_handle(String const& handle)
|
||||
{
|
||||
m_page_host->page().top_level_browsing_context().set_window_handle(handle);
|
||||
}
|
||||
|
||||
void ConnectionFromClient::connect_to_webdriver(DeprecatedString const& webdriver_ipc_path)
|
||||
{
|
||||
// FIXME: Propagate this error back to the browser.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue