summaryrefslogtreecommitdiff
path: root/Meta
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2022-09-02 23:35:06 +0200
committerAndreas Kling <kling@serenityos.org>2022-09-06 00:27:09 +0200
commit2704bcdaaa5bf388aadeae834792c81f4fc51326 (patch)
tree0c3a9e175394d8a3e2265c1b700243dbc2f12cc4 /Meta
parent0d2fee351ad6e8032bb5c97ac0a481f1f5d05112 (diff)
downloadserenity-2704bcdaaa5bf388aadeae834792c81f4fc51326.zip
LibWeb: Make Path2D GC-allocated
Diffstat (limited to 'Meta')
-rw-r--r--Meta/Lagom/Tools/CodeGenerators/LibWeb/WrapperGenerator/IDLGenerators.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Meta/Lagom/Tools/CodeGenerators/LibWeb/WrapperGenerator/IDLGenerators.cpp b/Meta/Lagom/Tools/CodeGenerators/LibWeb/WrapperGenerator/IDLGenerators.cpp
index 08c4c5b1c0..452632a234 100644
--- a/Meta/Lagom/Tools/CodeGenerators/LibWeb/WrapperGenerator/IDLGenerators.cpp
+++ b/Meta/Lagom/Tools/CodeGenerators/LibWeb/WrapperGenerator/IDLGenerators.cpp
@@ -155,6 +155,8 @@ static bool impl_is_wrapper(Type const& type)
return true;
if (type.name == "WebGLRenderingContext"sv)
return true;
+ if (type.name == "Path2D"sv)
+ return true;
return false;
}