Skip to content

Commit

Permalink
LibWebSocket: Clean up #include directives
Browse files Browse the repository at this point in the history
This change aims to improve the speed of incremental builds.
  • Loading branch information
shlyakpavel committed Nov 20, 2024
1 parent ff61786 commit 887d2f0
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 4 deletions.
1 change: 1 addition & 0 deletions Libraries/LibWeb/Platform/AudioCodecPluginAgnostic.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

#pragma once

#include <LibCore/Timer.h>
#include <LibMedia/Audio/PlaybackStream.h>
#include <LibWeb/Platform/AudioCodecPlugin.h>

Expand Down
3 changes: 0 additions & 3 deletions Libraries/LibWebSocket/ConnectionInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,8 @@
#pragma once

#include <AK/Vector.h>
#include <LibCore/EventReceiver.h>
#include <LibHTTP/HeaderMap.h>
#include <LibTLS/TLSv12.h>
#include <LibURL/URL.h>
#include <LibWebSocket/Message.h>

namespace WebSocket {

Expand Down
1 change: 1 addition & 0 deletions Libraries/LibWebSocket/Impl/WebSocketImplSerenity.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

#include <LibCore/EventLoop.h>
#include <LibCore/Socket.h>
#include <LibTLS/TLSv12.h>
#include <LibWebSocket/Impl/WebSocketImplSerenity.h>

namespace WebSocket {
Expand Down
1 change: 0 additions & 1 deletion Libraries/LibWebSocket/WebSocket.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
#include <LibCrypto/Hash/HashManager.h>
#include <LibWebSocket/Impl/WebSocketImplSerenity.h>
#include <LibWebSocket/WebSocket.h>
#include <unistd.h>

namespace WebSocket {

Expand Down
1 change: 1 addition & 0 deletions Services/RequestServer/ConnectionFromClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
#include <LibCore/Proxy.h>
#include <LibCore/Socket.h>
#include <LibRequests/NetworkErrorEnum.h>
#include <LibTLS/TLSv12.h>
#include <LibTextCodec/Decoder.h>
#include <LibWebSocket/ConnectionInfo.h>
#include <LibWebSocket/Message.h>
Expand Down

0 comments on commit 887d2f0

Please sign in to comment.