WebContent: Fix some GCVerifier warnings

This commit is contained in:
Matthew Olsson 2024-04-05 13:47:57 -07:00 committed by Andreas Kling
parent 8450041b52
commit a221a4660e
Notes: sideshowbarker 2024-07-17 21:11:12 +09:00
6 changed files with 79 additions and 79 deletions

View file

@ -678,12 +678,12 @@ void PageClient::initialize_js_console(Web::DOM::Document& document)
m_top_level_document_console_client = console_client->make_weak_ptr();
}
m_console_clients.set(&document, move(console_client));
m_console_clients.set(document, move(console_client));
}
void PageClient::destroy_js_console(Web::DOM::Document& document)
{
m_console_clients.remove(&document);
m_console_clients.remove(document);
}
void PageClient::js_console_input(ByteString const& js_source)