mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 18:18:12 +00:00
LibWeb: Make DOMException GC-allocated
This commit is contained in:
parent
0e47754ac8
commit
497ead37bc
58 changed files with 307 additions and 278 deletions
|
@ -30,9 +30,13 @@ public:
|
|||
Gfx::Path const& path() const { return m_path; }
|
||||
|
||||
protected:
|
||||
CanvasPath() = default;
|
||||
explicit CanvasPath(Bindings::PlatformObject& self)
|
||||
: m_self(self)
|
||||
{
|
||||
}
|
||||
|
||||
private:
|
||||
Bindings::PlatformObject& m_self;
|
||||
Gfx::Path m_path;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue