summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/WebSockets
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2022-11-23 13:51:42 +0100
committerLinus Groh <mail@linusgroh.de>2022-11-23 16:05:59 +0000
commit38c7fdaac17e3eb21811e97b50cb8a8326562201 (patch)
treed7c56006ebc8ec20063a743817cb972bc8d6720e /Userland/Libraries/LibWeb/WebSockets
parent6dbca785d1d0fb213b8b0332fc93e39282640300 (diff)
downloadserenity-38c7fdaac17e3eb21811e97b50cb8a8326562201.zip
LibWeb: Avoid including LibJS/Parser.h in a handful of cpp files
Diffstat (limited to 'Userland/Libraries/LibWeb/WebSockets')
-rw-r--r--Userland/Libraries/LibWeb/WebSockets/WebSocket.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWeb/WebSockets/WebSocket.cpp b/Userland/Libraries/LibWeb/WebSockets/WebSocket.cpp
index 1b419f37df..71083ce1fc 100644
--- a/Userland/Libraries/LibWeb/WebSockets/WebSocket.cpp
+++ b/Userland/Libraries/LibWeb/WebSockets/WebSocket.cpp
@@ -4,8 +4,6 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
-#include <LibJS/Interpreter.h>
-#include <LibJS/Parser.h>
#include <LibJS/Runtime/ArrayBuffer.h>
#include <LibJS/Runtime/FunctionObject.h>
#include <LibWeb/DOM/Document.h>