diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2021-10-10 15:56:29 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-10-20 09:20:18 +0100 |
commit | dee26ca5cdfe62c28c6ec5c516187f335b58471e (patch) | |
tree | e929b7e5c52e8ee2fe15b08ea7e85430fec67db0 /Userland/Libraries | |
parent | 0a53cf2a07f1042b1b438a15e260da910db27d0c (diff) | |
download | serenity-dee26ca5cdfe62c28c6ec5c516187f335b58471e.zip |
LibWeb: Add missing headers
Diffstat (limited to 'Userland/Libraries')
4 files changed, 5 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/CSS/Display.h b/Userland/Libraries/LibWeb/CSS/Display.h index dd1f1782a7..634f92d778 100644 --- a/Userland/Libraries/LibWeb/CSS/Display.h +++ b/Userland/Libraries/LibWeb/CSS/Display.h @@ -6,6 +6,8 @@ #pragma once +#include <AK/Assertions.h> + namespace Web::CSS { class Display { diff --git a/Userland/Libraries/LibWeb/Layout/FlexFormattingContext.h b/Userland/Libraries/LibWeb/Layout/FlexFormattingContext.h index 73dffa9310..0a684de2af 100644 --- a/Userland/Libraries/LibWeb/Layout/FlexFormattingContext.h +++ b/Userland/Libraries/LibWeb/Layout/FlexFormattingContext.h @@ -6,6 +6,7 @@ #pragma once +#include <LibWeb/Layout/Box.h> #include <LibWeb/Layout/FormattingContext.h> namespace Web::Layout { diff --git a/Userland/Libraries/LibWeb/Layout/FormattingContext.h b/Userland/Libraries/LibWeb/Layout/FormattingContext.h index de0208a74e..d88163b4bd 100644 --- a/Userland/Libraries/LibWeb/Layout/FormattingContext.h +++ b/Userland/Libraries/LibWeb/Layout/FormattingContext.h @@ -6,6 +6,7 @@ #pragma once +#include <AK/OwnPtr.h> #include <LibWeb/Forward.h> namespace Web::Layout { diff --git a/Userland/Libraries/LibWeb/Layout/TreeBuilder.h b/Userland/Libraries/LibWeb/Layout/TreeBuilder.h index ae000a4765..7089e4b379 100644 --- a/Userland/Libraries/LibWeb/Layout/TreeBuilder.h +++ b/Userland/Libraries/LibWeb/Layout/TreeBuilder.h @@ -8,6 +8,7 @@ #include <AK/NonnullRefPtrVector.h> #include <AK/RefPtr.h> +#include <LibWeb/CSS/Display.h> #include <LibWeb/Forward.h> namespace Web::Layout { |