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/Forward.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/Forward.h')
-rw-r--r-- | Userland/Libraries/LibWeb/Forward.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/Forward.h b/Userland/Libraries/LibWeb/Forward.h index 95173ca931..5595c9cb92 100644 --- a/Userland/Libraries/LibWeb/Forward.h +++ b/Userland/Libraries/LibWeb/Forward.h @@ -454,6 +454,7 @@ class URLSearchParamsIterator; } namespace Web::Bindings { +class CallbackType; class LocationObject; class OptionConstructor; class RangePrototype; |