mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 07:54:58 +00:00
LibWebView+WebContent: Remove unused did_get_dom_node_properties
IPC
This is never invoked. The functionality it provides is implemented by the return value of the `inspect_dom_node` IPC.
This commit is contained in:
parent
fcaa994d4e
commit
30e96749de
5 changed files with 0 additions and 13 deletions
|
@ -208,12 +208,6 @@ void WebContentClient::did_get_dom_tree(DeprecatedString const& dom_tree)
|
|||
m_view.on_received_dom_tree(dom_tree);
|
||||
}
|
||||
|
||||
void WebContentClient::did_get_dom_node_properties(i32 node_id, DeprecatedString const& computed_style, DeprecatedString const& resolved_style, DeprecatedString const& custom_properties, DeprecatedString const& node_box_sizing, DeprecatedString const& aria_properties_state)
|
||||
{
|
||||
if (m_view.on_received_dom_node_properties)
|
||||
m_view.on_received_dom_node_properties(node_id, computed_style, resolved_style, custom_properties, node_box_sizing, aria_properties_state);
|
||||
}
|
||||
|
||||
void WebContentClient::did_get_accessibility_tree(DeprecatedString const& accessibility_tree)
|
||||
{
|
||||
if (m_view.on_received_accessibility_tree)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue