summaryrefslogtreecommitdiff
path: root/Userland/Services/WebContent/EventLoopPluginSerenity.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Services/WebContent/EventLoopPluginSerenity.h')
-rw-r--r--Userland/Services/WebContent/EventLoopPluginSerenity.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/Userland/Services/WebContent/EventLoopPluginSerenity.h b/Userland/Services/WebContent/EventLoopPluginSerenity.h
deleted file mode 100644
index 0493ac7ab1..0000000000
--- a/Userland/Services/WebContent/EventLoopPluginSerenity.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
-
-#pragma once
-
-#include <LibWeb/Platform/EventLoopPlugin.h>
-
-namespace WebContent {
-
-class EventLoopPluginSerenity final : public Web::Platform::EventLoopPlugin {
-public:
- EventLoopPluginSerenity();
- virtual ~EventLoopPluginSerenity() override;
-
- virtual void spin_until(Function<bool()> goal_condition) override;
- virtual void deferred_invoke(Function<void()>) override;
- virtual NonnullRefPtr<Web::Platform::Timer> create_timer() override;
-};
-
-}