1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-30 18:28:10 +00:00

LibWeb: Remove unused Document::on_layout_updated hook

This commit is contained in:
Andreas Kling 2020-06-07 14:47:33 +02:00
parent 747b21782e
commit 59f9b32a44
2 changed files with 0 additions and 3 deletions

View file

@ -262,8 +262,6 @@ void Document::update_layout()
return;
layout();
if (on_layout_updated)
on_layout_updated();
}
RefPtr<LayoutNode> Document::create_layout_node(const StyleProperties*) const

View file

@ -109,7 +109,6 @@ public:
void update_style();
void update_layout();
Function<void()> on_layout_updated;
virtual bool is_child_allowed(const Node&) const override;