mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-05 23:59:49 +00:00
LibWebView+WebContent: Make the DOM node HTML retrieval IPC async
This commit is contained in:
parent
c190294a76
commit
93db790974
Notes:
sideshowbarker
2024-07-17 06:46:15 +09:00
Author: https://github.com/trflynn89
Commit: 93db790974
Pull-request: https://github.com/SerenityOS/serenity/pull/22519
9 changed files with 24 additions and 13 deletions
|
@ -191,9 +191,9 @@ void ViewImplementation::remove_dom_node(i32 node_id)
|
|||
client().async_remove_dom_node(node_id);
|
||||
}
|
||||
|
||||
Optional<String> ViewImplementation::get_dom_node_html(i32 node_id)
|
||||
void ViewImplementation::get_dom_node_html(i32 node_id)
|
||||
{
|
||||
return client().get_dom_node_html(node_id);
|
||||
client().async_get_dom_node_html(node_id);
|
||||
}
|
||||
|
||||
void ViewImplementation::debug_request(ByteString const& request, ByteString const& argument)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue