diff options
author | Andreas Kling <kling@serenityos.org> | 2021-08-24 16:28:08 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-24 16:37:28 +0200 |
commit | dfa9dcca9892227d51b1bb545e6eab544d5d9e2c (patch) | |
tree | 1825127ed137e1a45019f72a20d1fe95bed1ad2d /Userland | |
parent | c9151745631a45e6511eab6ec41308414be8757b (diff) | |
download | serenity-dfa9dcca9892227d51b1bb545e6eab544d5d9e2c.zip |
LibWeb+Browser: Remove unnecessary InProcessWebView.h includes
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/Applications/Browser/BrowserConsoleClient.h | 1 | ||||
-rw-r--r-- | Userland/Libraries/LibWeb/CSS/StyleValue.cpp | 3 | ||||
-rw-r--r-- | Userland/Libraries/LibWeb/DOM/Document.cpp | 2 | ||||
-rw-r--r-- | Userland/Libraries/LibWeb/DOM/Window.cpp | 2 | ||||
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/HTMLFormElement.cpp | 3 | ||||
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/HTMLInputElement.cpp | 1 | ||||
-rw-r--r-- | Userland/Libraries/LibWeb/Layout/FrameBox.cpp | 1 | ||||
-rw-r--r-- | Userland/Libraries/LibWeb/Page/BrowsingContext.cpp | 2 | ||||
-rw-r--r-- | Userland/Libraries/LibWeb/Page/EventHandler.cpp | 2 | ||||
-rw-r--r-- | Userland/Libraries/LibWeb/Page/Page.cpp | 1 |
10 files changed, 7 insertions, 11 deletions
diff --git a/Userland/Applications/Browser/BrowserConsoleClient.h b/Userland/Applications/Browser/BrowserConsoleClient.h index 06208cfb91..7c99f69e40 100644 --- a/Userland/Applications/Browser/BrowserConsoleClient.h +++ b/Userland/Applications/Browser/BrowserConsoleClient.h @@ -9,7 +9,6 @@ #include <LibGUI/Widget.h> #include <LibJS/Console.h> #include <LibJS/Forward.h> -#include <LibWeb/InProcessWebView.h> namespace Browser { diff --git a/Userland/Libraries/LibWeb/CSS/StyleValue.cpp b/Userland/Libraries/LibWeb/CSS/StyleValue.cpp index 1e6a676b37..e0850b5bfa 100644 --- a/Userland/Libraries/LibWeb/CSS/StyleValue.cpp +++ b/Userland/Libraries/LibWeb/CSS/StyleValue.cpp @@ -6,15 +6,14 @@ */ #include <AK/ByteBuffer.h> -#include <AK/Vector.h> #include <LibGfx/Palette.h> #include <LibWeb/CSS/Parser/StyleComponentValueRule.h> #include <LibWeb/CSS/StyleValue.h> #include <LibWeb/DOM/Document.h> -#include <LibWeb/InProcessWebView.h> #include <LibWeb/Loader/LoadRequest.h> #include <LibWeb/Loader/ResourceLoader.h> #include <LibWeb/Page/BrowsingContext.h> +#include <LibWeb/Page/Page.h> namespace Web::CSS { diff --git a/Userland/Libraries/LibWeb/DOM/Document.cpp b/Userland/Libraries/LibWeb/DOM/Document.cpp index 0680b0d404..3c2c1b71d1 100644 --- a/Userland/Libraries/LibWeb/DOM/Document.cpp +++ b/Userland/Libraries/LibWeb/DOM/Document.cpp @@ -45,13 +45,13 @@ #include <LibWeb/HTML/HTMLImageElement.h> #include <LibWeb/HTML/HTMLScriptElement.h> #include <LibWeb/HTML/HTMLTitleElement.h> -#include <LibWeb/InProcessWebView.h> #include <LibWeb/Layout/BlockFormattingContext.h> #include <LibWeb/Layout/InitialContainingBlockBox.h> #include <LibWeb/Layout/TreeBuilder.h> #include <LibWeb/Namespace.h> #include <LibWeb/Origin.h> #include <LibWeb/Page/BrowsingContext.h> +#include <LibWeb/Page/Page.h> #include <LibWeb/SVG/TagNames.h> #include <LibWeb/UIEvents/MouseEvent.h> diff --git a/Userland/Libraries/LibWeb/DOM/Window.cpp b/Userland/Libraries/LibWeb/DOM/Window.cpp index 321241b20b..d7d09db181 100644 --- a/Userland/Libraries/LibWeb/DOM/Window.cpp +++ b/Userland/Libraries/LibWeb/DOM/Window.cpp @@ -12,9 +12,9 @@ #include <LibWeb/DOM/Timer.h> #include <LibWeb/DOM/Window.h> #include <LibWeb/HighResolutionTime/Performance.h> -#include <LibWeb/InProcessWebView.h> #include <LibWeb/Layout/InitialContainingBlockBox.h> #include <LibWeb/Page/BrowsingContext.h> +#include <LibWeb/Page/Page.h> namespace Web::DOM { diff --git a/Userland/Libraries/LibWeb/HTML/HTMLFormElement.cpp b/Userland/Libraries/LibWeb/HTML/HTMLFormElement.cpp index 156f521157..19756f201b 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLFormElement.cpp +++ b/Userland/Libraries/LibWeb/HTML/HTMLFormElement.cpp @@ -5,12 +5,13 @@ */ #include <AK/StringBuilder.h> +#include <LibWeb/DOM/Document.h> #include <LibWeb/HTML/EventNames.h> #include <LibWeb/HTML/HTMLFormElement.h> #include <LibWeb/HTML/HTMLInputElement.h> #include <LibWeb/HTML/SubmitEvent.h> -#include <LibWeb/InProcessWebView.h> #include <LibWeb/Page/BrowsingContext.h> +#include <LibWeb/Page/Page.h> #include <LibWeb/URLEncoder.h> namespace Web::HTML { diff --git a/Userland/Libraries/LibWeb/HTML/HTMLInputElement.cpp b/Userland/Libraries/LibWeb/HTML/HTMLInputElement.cpp index 1ed1d8131c..e00ac66856 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLInputElement.cpp +++ b/Userland/Libraries/LibWeb/HTML/HTMLInputElement.cpp @@ -11,7 +11,6 @@ #include <LibWeb/HTML/EventNames.h> #include <LibWeb/HTML/HTMLFormElement.h> #include <LibWeb/HTML/HTMLInputElement.h> -#include <LibWeb/InProcessWebView.h> #include <LibWeb/Layout/BlockBox.h> #include <LibWeb/Layout/ButtonBox.h> #include <LibWeb/Layout/CheckBox.h> diff --git a/Userland/Libraries/LibWeb/Layout/FrameBox.cpp b/Userland/Libraries/LibWeb/Layout/FrameBox.cpp index 1ed914c87e..48c4ba97cf 100644 --- a/Userland/Libraries/LibWeb/Layout/FrameBox.cpp +++ b/Userland/Libraries/LibWeb/Layout/FrameBox.cpp @@ -7,7 +7,6 @@ #include <AK/Debug.h> #include <LibGfx/Painter.h> #include <LibWeb/DOM/Document.h> -#include <LibWeb/InProcessWebView.h> #include <LibWeb/Layout/FrameBox.h> #include <LibWeb/Layout/InitialContainingBlockBox.h> #include <LibWeb/Page/BrowsingContext.h> diff --git a/Userland/Libraries/LibWeb/Page/BrowsingContext.cpp b/Userland/Libraries/LibWeb/Page/BrowsingContext.cpp index 58698078f1..0691e935d4 100644 --- a/Userland/Libraries/LibWeb/Page/BrowsingContext.cpp +++ b/Userland/Libraries/LibWeb/Page/BrowsingContext.cpp @@ -9,11 +9,11 @@ #include <LibWeb/DOM/HTMLCollection.h> #include <LibWeb/DOM/Window.h> #include <LibWeb/HTML/HTMLAnchorElement.h> -#include <LibWeb/InProcessWebView.h> #include <LibWeb/Layout/BreakNode.h> #include <LibWeb/Layout/InitialContainingBlockBox.h> #include <LibWeb/Layout/TextNode.h> #include <LibWeb/Page/BrowsingContext.h> +#include <LibWeb/Page/Page.h> #include <LibWeb/UIEvents/EventNames.h> namespace Web { diff --git a/Userland/Libraries/LibWeb/Page/EventHandler.cpp b/Userland/Libraries/LibWeb/Page/EventHandler.cpp index 1fca7e74bd..81d8c847c1 100644 --- a/Userland/Libraries/LibWeb/Page/EventHandler.cpp +++ b/Userland/Libraries/LibWeb/Page/EventHandler.cpp @@ -12,10 +12,10 @@ #include <LibWeb/HTML/HTMLAnchorElement.h> #include <LibWeb/HTML/HTMLIFrameElement.h> #include <LibWeb/HTML/HTMLImageElement.h> -#include <LibWeb/InProcessWebView.h> #include <LibWeb/Layout/InitialContainingBlockBox.h> #include <LibWeb/Page/BrowsingContext.h> #include <LibWeb/Page/EventHandler.h> +#include <LibWeb/Page/Page.h> #include <LibWeb/UIEvents/EventNames.h> #include <LibWeb/UIEvents/MouseEvent.h> diff --git a/Userland/Libraries/LibWeb/Page/Page.cpp b/Userland/Libraries/LibWeb/Page/Page.cpp index f44117d373..9219869684 100644 --- a/Userland/Libraries/LibWeb/Page/Page.cpp +++ b/Userland/Libraries/LibWeb/Page/Page.cpp @@ -4,7 +4,6 @@ * SPDX-License-Identifier: BSD-2-Clause */ -#include <LibWeb/InProcessWebView.h> #include <LibWeb/Page/BrowsingContext.h> #include <LibWeb/Page/Page.h> |