1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:48:10 +00:00

LibJS+LibWeb: Add a bunch of missing includes

This commit is contained in:
Matthew Olsson 2023-02-25 10:42:45 -07:00 committed by Linus Groh
parent 8dc7810976
commit bab883bf8e
15 changed files with 18 additions and 0 deletions

View file

@ -7,6 +7,7 @@
#pragma once #pragma once
#include <AK/NonnullRefPtr.h>
#include <AK/StringView.h> #include <AK/StringView.h>
#include <AK/Types.h> #include <AK/Types.h>
#include <LibJS/SourceCode.h> #include <LibJS/SourceCode.h>

View file

@ -9,6 +9,7 @@
#include <AK/Format.h> #include <AK/Format.h>
#include <AK/Vector.h> #include <AK/Vector.h>
#include <LibWeb/CSS/Parser/ComponentValue.h>
#include <LibWeb/CSS/Parser/Tokenizer.h> #include <LibWeb/CSS/Parser/Tokenizer.h>
namespace Web::CSS::Parser { namespace Web::CSS::Parser {

View file

@ -7,6 +7,7 @@
#pragma once #pragma once
#include <AK/Function.h> #include <AK/Function.h>
#include <AK/HashMap.h>
#include <AK/IDAllocator.h> #include <AK/IDAllocator.h>
#include <LibWeb/HTML/EventLoop/EventLoop.h> #include <LibWeb/HTML/EventLoop/EventLoop.h>
#include <LibWeb/Platform/Timer.h> #include <LibWeb/Platform/Timer.h>

View file

@ -8,6 +8,7 @@
#include <AK/HashMap.h> #include <AK/HashMap.h>
#include <AK/NonnullRefPtr.h> #include <AK/NonnullRefPtr.h>
#include <AK/WeakPtr.h>
#include <LibJS/Heap/Cell.h> #include <LibJS/Heap/Cell.h>
#include <LibWeb/Forward.h> #include <LibWeb/Forward.h>

View file

@ -7,6 +7,7 @@
#pragma once #pragma once
#include <AK/Forward.h> #include <AK/Forward.h>
#include <AK/Variant.h>
#include <LibJS/Forward.h> #include <LibJS/Forward.h>
#include <LibWeb/Forward.h> #include <LibWeb/Forward.h>
#include <LibWeb/HTML/CrossOrigin/CrossOriginPropertyDescriptorMap.h> #include <LibWeb/HTML/CrossOrigin/CrossOriginPropertyDescriptorMap.h>

View file

@ -6,9 +6,12 @@
#pragma once #pragma once
#include <AK/DeprecatedString.h>
#include <AK/Forward.h> #include <AK/Forward.h>
#include <AK/Optional.h>
#include <AK/Traits.h> #include <AK/Traits.h>
#include <LibJS/Forward.h> #include <LibJS/Forward.h>
#include <LibJS/Runtime/PropertyKey.h>
namespace Web::HTML { namespace Web::HTML {

View file

@ -7,6 +7,7 @@
#pragma once #pragma once
#include <LibWeb/HTML/Scripting/ImportMap.h> #include <LibWeb/HTML/Scripting/ImportMap.h>
#include <LibWeb/HTML/Scripting/ModuleMap.h>
#include <LibWeb/HTML/Scripting/ModuleScript.h> #include <LibWeb/HTML/Scripting/ModuleScript.h>
namespace Web::HTML { namespace Web::HTML {

View file

@ -6,6 +6,7 @@
#pragma once #pragma once
#include <AK/URL.h>
#include <LibWeb/HTML/Scripting/ModuleScript.h> #include <LibWeb/HTML/Scripting/ModuleScript.h>
namespace Web::HTML { namespace Web::HTML {

View file

@ -4,6 +4,7 @@
* SPDX-License-Identifier: BSD-2-Clause * SPDX-License-Identifier: BSD-2-Clause
*/ */
#include <LibWeb/HTML/Scripting/Environments.h>
#include <LibWeb/HTML/Scripting/Script.h> #include <LibWeb/HTML/Scripting/Script.h>
namespace Web::HTML { namespace Web::HTML {

View file

@ -8,6 +8,7 @@
#include <AK/URL.h> #include <AK/URL.h>
#include <AK/WeakPtr.h> #include <AK/WeakPtr.h>
#include <LibJS/Heap/GCPtr.h>
#include <LibWeb/Forward.h> #include <LibWeb/Forward.h>
#include <LibWeb/HTML/PolicyContainers.h> #include <LibWeb/HTML/PolicyContainers.h>

View file

@ -6,6 +6,7 @@
#pragma once #pragma once
#include <AK/StringView.h>
#include <AK/Types.h> #include <AK/Types.h>
namespace Web::Infra { namespace Web::Infra {

View file

@ -8,6 +8,7 @@
#include <AK/Forward.h> #include <AK/Forward.h>
#include <LibWeb/Layout/FormattingContext.h> #include <LibWeb/Layout/FormattingContext.h>
#include <LibWeb/Layout/TableBox.h>
#include <LibWeb/Layout/TableWrapper.h> #include <LibWeb/Layout/TableWrapper.h>
namespace Web::Layout { namespace Web::Layout {

View file

@ -8,7 +8,9 @@
#include <AK/NonnullRefPtrVector.h> #include <AK/NonnullRefPtrVector.h>
#include <AK/RefPtr.h> #include <AK/RefPtr.h>
#include <LibJS/Heap/GCPtr.h>
#include <LibWeb/CSS/Display.h> #include <LibWeb/CSS/Display.h>
#include <LibWeb/CSS/Selector.h>
#include <LibWeb/Forward.h> #include <LibWeb/Forward.h>
namespace Web::Layout { namespace Web::Layout {

View file

@ -9,6 +9,7 @@
#include <AK/Span.h> #include <AK/Span.h>
#include <AK/Vector.h> #include <AK/Vector.h>
#include <LibGfx/Color.h> #include <LibGfx/Color.h>
#include <LibGfx/Gradients.h>
#include <LibWeb/Forward.h> #include <LibWeb/Forward.h>
#include <LibWeb/Painting/PaintContext.h> #include <LibWeb/Painting/PaintContext.h>

View file

@ -8,6 +8,7 @@
#pragma once #pragma once
#include <LibJS/Forward.h> #include <LibJS/Forward.h>
#include <LibJS/Runtime/Value.h>
#include <LibJS/SafeFunction.h> #include <LibJS/SafeFunction.h>
#include <LibWeb/Forward.h> #include <LibWeb/Forward.h>