summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Layout/InlineNode.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2022-03-10 22:38:08 +0100
committerAndreas Kling <kling@serenityos.org>2022-03-11 00:21:49 +0100
commited84fbce474a86721ff85aa9559213e12bd556ba (patch)
treee87ff19b4581c0c5206a0d40831ed392b591c3ba /Userland/Libraries/LibWeb/Layout/InlineNode.h
parent702cee3d7c36570763c5552461b9665f557bf9cc (diff)
downloadserenity-ed84fbce474a86721ff85aa9559213e12bd556ba.zip
LibWeb: Make Paintable ref-counted
This will allow us to use a protective NonnullRefPtr to keep paintables alive while running arbitrary JavaScript in response to events.
Diffstat (limited to 'Userland/Libraries/LibWeb/Layout/InlineNode.h')
-rw-r--r--Userland/Libraries/LibWeb/Layout/InlineNode.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/Layout/InlineNode.h b/Userland/Libraries/LibWeb/Layout/InlineNode.h
index 687f818bc3..bf5f35552b 100644
--- a/Userland/Libraries/LibWeb/Layout/InlineNode.h
+++ b/Userland/Libraries/LibWeb/Layout/InlineNode.h
@@ -15,7 +15,7 @@ public:
InlineNode(DOM::Document&, DOM::Element*, NonnullRefPtr<CSS::StyleProperties>);
virtual ~InlineNode() override;
- virtual OwnPtr<Painting::Paintable> create_paintable() const override;
+ virtual RefPtr<Painting::Paintable> create_paintable() const override;
};
}