Browse Source

LibWeb: Add missing headers

Ben Wiederhake 3 years ago
parent
commit
dee26ca5cd

+ 2 - 0
Userland/Libraries/LibWeb/CSS/Display.h

@@ -6,6 +6,8 @@
 
 #pragma once
 
+#include <AK/Assertions.h>
+
 namespace Web::CSS {
 
 class Display {

+ 1 - 0
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 {

+ 1 - 0
Userland/Libraries/LibWeb/Layout/FormattingContext.h

@@ -6,6 +6,7 @@
 
 #pragma once
 
+#include <AK/OwnPtr.h>
 #include <LibWeb/Forward.h>
 
 namespace Web::Layout {

+ 1 - 0
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 {