summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-02-15 00:12:31 +0100
committerAndreas Kling <kling@serenityos.org>2020-02-15 00:12:31 +0100
commit6a3cd11a8035747c05e781064a8a0084736908c8 (patch)
treefd22c611fb7bbf96621bb2c8cdbea597a85def98
parenta368cf7d515470e5d6122246bbaf0a0e9cd1aee5 (diff)
downloadserenity-6a3cd11a8035747c05e781064a8a0084736908c8.zip
AK: Remove manual forward declarations with <AK/Forward.h>
-rw-r--r--DevTools/Inspector/RemoteProcess.h4
-rw-r--r--Libraries/LibAudio/WavLoader.h4
-rw-r--r--Libraries/LibGUI/Variant.h4
-rw-r--r--Libraries/LibProtocol/Download.h4
-rw-r--r--Servers/ProtocolServer/PSClientConnection.h4
-rw-r--r--Servers/SystemServer/Service.h7
6 files changed, 0 insertions, 27 deletions
diff --git a/DevTools/Inspector/RemoteProcess.h b/DevTools/Inspector/RemoteProcess.h
index 1077beed36..409f1bda43 100644
--- a/DevTools/Inspector/RemoteProcess.h
+++ b/DevTools/Inspector/RemoteProcess.h
@@ -29,10 +29,6 @@
#include <AK/NonnullOwnPtrVector.h>
#include <LibCore/LocalSocket.h>
-namespace AK {
-class JsonObject;
-}
-
class RemoteObjectGraphModel;
class RemoteObject;
diff --git a/Libraries/LibAudio/WavLoader.h b/Libraries/LibAudio/WavLoader.h
index 28ba8cf48b..4a84f20bf4 100644
--- a/Libraries/LibAudio/WavLoader.h
+++ b/Libraries/LibAudio/WavLoader.h
@@ -32,10 +32,6 @@
#include <LibAudio/Buffer.h>
#include <LibCore/File.h>
-namespace AK {
-class ByteBuffer;
-}
-
namespace Audio {
class Buffer;
diff --git a/Libraries/LibGUI/Variant.h b/Libraries/LibGUI/Variant.h
index 1a95ae2280..25a01e9eb3 100644
--- a/Libraries/LibGUI/Variant.h
+++ b/Libraries/LibGUI/Variant.h
@@ -31,10 +31,6 @@
#include <LibGfx/Bitmap.h>
#include <LibGUI/Icon.h>
-namespace AK {
-class JsonValue;
-}
-
namespace GUI {
class Variant {
diff --git a/Libraries/LibProtocol/Download.h b/Libraries/LibProtocol/Download.h
index 56eba480be..13b4e27562 100644
--- a/Libraries/LibProtocol/Download.h
+++ b/Libraries/LibProtocol/Download.h
@@ -32,10 +32,6 @@
#include <AK/RefCounted.h>
#include <AK/WeakPtr.h>
-namespace AK {
-class SharedBuffer;
-}
-
namespace Protocol {
class Client;
diff --git a/Servers/ProtocolServer/PSClientConnection.h b/Servers/ProtocolServer/PSClientConnection.h
index 7184bad286..0760ebe1e5 100644
--- a/Servers/ProtocolServer/PSClientConnection.h
+++ b/Servers/ProtocolServer/PSClientConnection.h
@@ -30,10 +30,6 @@
#include <LibIPC/ClientConnection.h>
#include <ProtocolServer/ProtocolServerEndpoint.h>
-namespace AK {
-class SharedBuffer;
-}
-
class Download;
class PSClientConnection final : public IPC::ClientConnection<ProtocolServerEndpoint>
diff --git a/Servers/SystemServer/Service.h b/Servers/SystemServer/Service.h
index 1c1c8fcff5..587fc805f5 100644
--- a/Servers/SystemServer/Service.h
+++ b/Servers/SystemServer/Service.h
@@ -32,13 +32,6 @@
#include <LibCore/Notifier.h>
#include <LibCore/Object.h>
-namespace AK {
-class JsonObject;
-}
-namespace Core {
-class ConfigFile;
-}
-
class Service final : public Core::Object {
C_OBJECT(Service)