From a797a92990ce71719aa894ace99be42661d659c8 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Wed, 13 Apr 2022 20:50:43 +0100 Subject: [PATCH] LibWeb: Stop including StyleValue.h in a few places I don't know how much this will actually help compile times, but it's something! --- Userland/Libraries/LibWeb/CSS/LengthBox.h | 3 +-- Userland/Libraries/LibWeb/HTML/HTMLBlinkElement.cpp | 1 - Userland/Libraries/LibWeb/Layout/ImageBox.cpp | 1 - Userland/Libraries/LibWeb/Painting/BackgroundPainting.h | 1 - 4 files changed, 1 insertion(+), 5 deletions(-) diff --git a/Userland/Libraries/LibWeb/CSS/LengthBox.h b/Userland/Libraries/LibWeb/CSS/LengthBox.h index e68efbcb61..7aef70eaa4 100644 --- a/Userland/Libraries/LibWeb/CSS/LengthBox.h +++ b/Userland/Libraries/LibWeb/CSS/LengthBox.h @@ -6,8 +6,7 @@ #pragma once -#include -#include +#include namespace Web::CSS { diff --git a/Userland/Libraries/LibWeb/HTML/HTMLBlinkElement.cpp b/Userland/Libraries/LibWeb/HTML/HTMLBlinkElement.cpp index ad52592bb6..c28d574fad 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLBlinkElement.cpp +++ b/Userland/Libraries/LibWeb/HTML/HTMLBlinkElement.cpp @@ -5,7 +5,6 @@ */ #include -#include #include namespace Web::HTML { diff --git a/Userland/Libraries/LibWeb/Layout/ImageBox.cpp b/Userland/Libraries/LibWeb/Layout/ImageBox.cpp index be67828de8..cb72558f93 100644 --- a/Userland/Libraries/LibWeb/Layout/ImageBox.cpp +++ b/Userland/Libraries/LibWeb/Layout/ImageBox.cpp @@ -5,7 +5,6 @@ */ #include -#include #include #include #include diff --git a/Userland/Libraries/LibWeb/Painting/BackgroundPainting.h b/Userland/Libraries/LibWeb/Painting/BackgroundPainting.h index 04817424fc..aa4b4832c4 100644 --- a/Userland/Libraries/LibWeb/Painting/BackgroundPainting.h +++ b/Userland/Libraries/LibWeb/Painting/BackgroundPainting.h @@ -7,7 +7,6 @@ #pragma once #include -#include #include #include #include