From 001df2493568cb01eb6d8b47a888be811896607a Mon Sep 17 00:00:00 2001 From: Pavel Shliak Date: Thu, 21 Nov 2024 02:47:45 +0400 Subject: [PATCH] LibWebSocket: Clean up #include directives This change aims to improve the speed of incremental builds. --- Libraries/LibWeb/Platform/AudioCodecPluginAgnostic.h | 1 + Libraries/LibWebSocket/ConnectionInfo.h | 3 --- Libraries/LibWebSocket/Impl/WebSocketImplSerenity.cpp | 1 + Libraries/LibWebSocket/WebSocket.cpp | 1 - Services/RequestServer/ConnectionFromClient.cpp | 1 + 5 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Libraries/LibWeb/Platform/AudioCodecPluginAgnostic.h b/Libraries/LibWeb/Platform/AudioCodecPluginAgnostic.h index 5b596c254b3..31c2bafac2b 100644 --- a/Libraries/LibWeb/Platform/AudioCodecPluginAgnostic.h +++ b/Libraries/LibWeb/Platform/AudioCodecPluginAgnostic.h @@ -6,6 +6,7 @@ #pragma once +#include #include #include diff --git a/Libraries/LibWebSocket/ConnectionInfo.h b/Libraries/LibWebSocket/ConnectionInfo.h index b6d9b2a2417..36b43d7af64 100644 --- a/Libraries/LibWebSocket/ConnectionInfo.h +++ b/Libraries/LibWebSocket/ConnectionInfo.h @@ -7,11 +7,8 @@ #pragma once #include -#include #include -#include #include -#include namespace WebSocket { diff --git a/Libraries/LibWebSocket/Impl/WebSocketImplSerenity.cpp b/Libraries/LibWebSocket/Impl/WebSocketImplSerenity.cpp index 3aa0d5cf416..ae2a62f4449 100644 --- a/Libraries/LibWebSocket/Impl/WebSocketImplSerenity.cpp +++ b/Libraries/LibWebSocket/Impl/WebSocketImplSerenity.cpp @@ -8,6 +8,7 @@ #include #include +#include #include namespace WebSocket { diff --git a/Libraries/LibWebSocket/WebSocket.cpp b/Libraries/LibWebSocket/WebSocket.cpp index f090e2c8cfe..4ef9a00c04a 100644 --- a/Libraries/LibWebSocket/WebSocket.cpp +++ b/Libraries/LibWebSocket/WebSocket.cpp @@ -10,7 +10,6 @@ #include #include #include -#include namespace WebSocket { diff --git a/Services/RequestServer/ConnectionFromClient.cpp b/Services/RequestServer/ConnectionFromClient.cpp index 9b0502cfcaf..b9c03443319 100644 --- a/Services/RequestServer/ConnectionFromClient.cpp +++ b/Services/RequestServer/ConnectionFromClient.cpp @@ -12,6 +12,7 @@ #include #include #include +#include #include #include #include