diff options
author | Linus Groh <mail@linusgroh.de> | 2022-09-25 17:28:46 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-09-25 19:13:31 +0100 |
commit | bbaa05fcf9a2a7b9515319b102a234be930824cd (patch) | |
tree | 4113d3e5f6cfa9331f80b62cb9783020c701fdae /Meta | |
parent | ad04d7ac9b88ecea572cf517f6e01ccf1e95073d (diff) | |
download | serenity-bbaa05fcf9a2a7b9515319b102a234be930824cd.zip |
LibWeb: Move DOMException from DOM/ to WebIDL/
Diffstat (limited to 'Meta')
-rw-r--r-- | Meta/Lagom/Tools/CodeGenerators/LibWeb/BindingsGenerator/IDLGenerators.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Meta/Lagom/Tools/CodeGenerators/LibWeb/BindingsGenerator/IDLGenerators.cpp b/Meta/Lagom/Tools/CodeGenerators/LibWeb/BindingsGenerator/IDLGenerators.cpp index 3cc7c80ef9..1c0a902feb 100644 --- a/Meta/Lagom/Tools/CodeGenerators/LibWeb/BindingsGenerator/IDLGenerators.cpp +++ b/Meta/Lagom/Tools/CodeGenerators/LibWeb/BindingsGenerator/IDLGenerators.cpp @@ -2087,6 +2087,7 @@ using namespace Web::Selection; using namespace Web::UIEvents; using namespace Web::XHR; using namespace Web::WebGL; +using namespace Web::WebIDL; namespace Web::Bindings { @@ -2402,6 +2403,7 @@ using namespace Web::URL; using namespace Web::WebSockets; using namespace Web::XHR; using namespace Web::WebGL; +using namespace Web::WebIDL; namespace Web::Bindings { @@ -2843,6 +2845,7 @@ using namespace Web::XHR; using namespace Web::UIEvents; using namespace Web::URL; using namespace Web::WebGL; +using namespace Web::WebIDL; namespace Web::Bindings { |