From 6a3cd11a8035747c05e781064a8a0084736908c8 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 15 Feb 2020 00:12:31 +0100 Subject: [PATCH] AK: Remove manual forward declarations with --- DevTools/Inspector/RemoteProcess.h | 4 ---- Libraries/LibAudio/WavLoader.h | 4 ---- Libraries/LibGUI/Variant.h | 4 ---- Libraries/LibProtocol/Download.h | 4 ---- Servers/ProtocolServer/PSClientConnection.h | 4 ---- Servers/SystemServer/Service.h | 7 ------- 6 files changed, 27 deletions(-) diff --git a/DevTools/Inspector/RemoteProcess.h b/DevTools/Inspector/RemoteProcess.h index 1077beed360..409f1bda433 100644 --- a/DevTools/Inspector/RemoteProcess.h +++ b/DevTools/Inspector/RemoteProcess.h @@ -29,10 +29,6 @@ #include #include -namespace AK { -class JsonObject; -} - class RemoteObjectGraphModel; class RemoteObject; diff --git a/Libraries/LibAudio/WavLoader.h b/Libraries/LibAudio/WavLoader.h index 28ba8cf48b2..4a84f20bf4f 100644 --- a/Libraries/LibAudio/WavLoader.h +++ b/Libraries/LibAudio/WavLoader.h @@ -32,10 +32,6 @@ #include #include -namespace AK { -class ByteBuffer; -} - namespace Audio { class Buffer; diff --git a/Libraries/LibGUI/Variant.h b/Libraries/LibGUI/Variant.h index 1a95ae22801..25a01e9eb3b 100644 --- a/Libraries/LibGUI/Variant.h +++ b/Libraries/LibGUI/Variant.h @@ -31,10 +31,6 @@ #include #include -namespace AK { -class JsonValue; -} - namespace GUI { class Variant { diff --git a/Libraries/LibProtocol/Download.h b/Libraries/LibProtocol/Download.h index 56eba480be8..13b4e275620 100644 --- a/Libraries/LibProtocol/Download.h +++ b/Libraries/LibProtocol/Download.h @@ -32,10 +32,6 @@ #include #include -namespace AK { -class SharedBuffer; -} - namespace Protocol { class Client; diff --git a/Servers/ProtocolServer/PSClientConnection.h b/Servers/ProtocolServer/PSClientConnection.h index 7184bad286d..0760ebe1e52 100644 --- a/Servers/ProtocolServer/PSClientConnection.h +++ b/Servers/ProtocolServer/PSClientConnection.h @@ -30,10 +30,6 @@ #include #include -namespace AK { -class SharedBuffer; -} - class Download; class PSClientConnection final : public IPC::ClientConnection diff --git a/Servers/SystemServer/Service.h b/Servers/SystemServer/Service.h index 1c1c8fcff51..587fc805f56 100644 --- a/Servers/SystemServer/Service.h +++ b/Servers/SystemServer/Service.h @@ -32,13 +32,6 @@ #include #include -namespace AK { -class JsonObject; -} -namespace Core { -class ConfigFile; -} - class Service final : public Core::Object { C_OBJECT(Service)