mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
This will allow us to remove the use of SafeFunction in it's implementation. This requires a fair amount of plumbing to wire up the GC heap to the appropriate places in order to create the timers.
30 lines
659 B
C++
30 lines
659 B
C++
/*
|
|
* Copyright (c) 2022, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Forward.h>
|
|
#include <LibJS/Heap/GCPtr.h>
|
|
#include <LibJS/SafeFunction.h>
|
|
#include <LibWeb/Forward.h>
|
|
|
|
namespace Web::Platform {
|
|
|
|
class EventLoopPlugin {
|
|
public:
|
|
static EventLoopPlugin& the();
|
|
static void install(EventLoopPlugin&);
|
|
|
|
virtual ~EventLoopPlugin();
|
|
|
|
virtual void spin_until(JS::SafeFunction<bool()> goal_condition) = 0;
|
|
virtual void deferred_invoke(ESCAPING JS::SafeFunction<void()>) = 0;
|
|
virtual JS::NonnullGCPtr<Timer> create_timer(JS::Heap&) = 0;
|
|
virtual void quit() = 0;
|
|
};
|
|
|
|
}
|