diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2022-09-13 17:42:39 +0200 |
---|---|---|
committer | Tim Flynn <trflynn89@pm.me> | 2022-09-18 13:27:24 -0400 |
commit | d073a31c21f38d1c19029b79fb18936acaa9a46d (patch) | |
tree | 4081d34187ca57b873b068afc81fa0abd89c1fef /Userland/Libraries/LibWeb/HTML/SandboxingFlagSet.h | |
parent | e9d5d2f74b8c8442fde9d2fd783c035e54f01ead (diff) | |
download | serenity-d073a31c21f38d1c19029b79fb18936acaa9a46d.zip |
LibWeb: Add missing includes
This remained undetected for a long time as HeaderCheck is disabled by
default. This commit makes the following file compile again:
// file: compile_me.cpp
#include <LibWeb/HTML/CrossOrigin/CrossOriginOpenerPolicy.h>
// That's it, this was enough to cause a compilation error.
Likewise for most other files touched by this commit.
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/SandboxingFlagSet.h')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/SandboxingFlagSet.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/SandboxingFlagSet.h b/Userland/Libraries/LibWeb/HTML/SandboxingFlagSet.h index 29ec4f7311..1e16261d8a 100644 --- a/Userland/Libraries/LibWeb/HTML/SandboxingFlagSet.h +++ b/Userland/Libraries/LibWeb/HTML/SandboxingFlagSet.h @@ -6,6 +6,8 @@ #pragma once +#include <AK/Types.h> + namespace Web::HTML { // https://html.spec.whatwg.org/multipage/origin.html#sandboxing-flag-set |