LibWeb+LibWebView+WebContent+Ladybird: Add IPC call that opens new tab

This commit is contained in:
Aliaksandr Kalenik 2023-03-14 17:12:09 +03:00 committed by Tim Flynn
commit a9f8d4eada
Notes: sideshowbarker 2024-07-17 07:25:39 +09:00
12 changed files with 32 additions and 0 deletions

View file

@ -377,6 +377,11 @@ void PageHost::page_did_update_resource_count(i32 count_waiting)
m_client.async_did_update_resource_count(count_waiting);
}
String PageHost::page_did_request_new_tab()
{
return m_client.did_request_new_tab();
}
void PageHost::page_did_close_browsing_context(Web::HTML::BrowsingContext const&)
{
m_client.async_did_close_browsing_context();