diff --git a/Userland/Libraries/LibWeb/Bindings/WindowObject.h b/Userland/Libraries/LibWeb/Bindings/WindowObject.h deleted file mode 100644 index ac4013b6d3..0000000000 --- a/Userland/Libraries/LibWeb/Bindings/WindowObject.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright (c) 2020-2022, Andreas Kling - * Copyright (c) 2021, Sam Atkins - * Copyright (c) 2021-2022, Linus Groh - * - * SPDX-License-Identifier: BSD-2-Clause - */ - -#pragma once - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -namespace Web { -namespace Bindings { - -class WindowObject - : public JS::GlobalObject - , public Weakable { - JS_OBJECT(WindowObject, JS::GlobalObject); - -public: - explicit WindowObject(JS::Realm&, HTML::Window&); - virtual void initialize(JS::Realm&) override; - virtual ~WindowObject() override = default; -}; - -} -} diff --git a/Userland/Services/WebContent/ConsoleGlobalObject.h b/Userland/Services/WebContent/ConsoleGlobalObject.h index 10e14b1cf9..8a875ae5d4 100644 --- a/Userland/Services/WebContent/ConsoleGlobalObject.h +++ b/Userland/Services/WebContent/ConsoleGlobalObject.h @@ -11,10 +11,6 @@ #include #include -namespace Web::Bindings { -class WindowObject; -} - namespace WebContent { class ConsoleGlobalObject final : public JS::GlobalObject {