diff options
author | Linus Groh <mail@linusgroh.de> | 2022-07-12 20:37:43 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-07-14 00:42:26 +0100 |
commit | 22a627fc1a694b21325aad32cdbb618fe4080253 (patch) | |
tree | f2885af75827c8809ab4b1d12135a9cd9a1ca8fc /Meta | |
parent | 1748362e05a520986039f25968880260067bf5f7 (diff) | |
download | serenity-22a627fc1a694b21325aad32cdbb618fe4080253.zip |
LibWeb: Move Origin into the HTML namespace
Origin is defined in the HTML Standard, and therefore belongs into the
HTML directory and namespace in LibWeb.
https://html.spec.whatwg.org/multipage/origin.html#origin
Diffstat (limited to 'Meta')
-rw-r--r-- | Meta/Lagom/Tools/CodeGenerators/LibWeb/WrapperGenerator/IDLGenerators.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Meta/Lagom/Tools/CodeGenerators/LibWeb/WrapperGenerator/IDLGenerators.cpp b/Meta/Lagom/Tools/CodeGenerators/LibWeb/WrapperGenerator/IDLGenerators.cpp index 1724b4b4a9..c45ff7a548 100644 --- a/Meta/Lagom/Tools/CodeGenerators/LibWeb/WrapperGenerator/IDLGenerators.cpp +++ b/Meta/Lagom/Tools/CodeGenerators/LibWeb/WrapperGenerator/IDLGenerators.cpp @@ -3118,9 +3118,9 @@ void generate_prototype_implementation(IDL::Interface const& interface) #include <LibWeb/DOM/IDLEventListener.h> #include <LibWeb/DOM/NodeFilter.h> #include <LibWeb/DOM/Range.h> +#include <LibWeb/HTML/Origin.h> #include <LibWeb/HTML/Scripting/Environments.h> #include <LibWeb/HTML/Window.h> -#include <LibWeb/Origin.h> #if __has_include(<LibWeb/Bindings/@prototype_base_class@.h>) # include <LibWeb/Bindings/@prototype_base_class@.h> |