mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-07 19:57:45 +03:00
829186af7d
This allows you to customize breaking out of the system event loop.
40 lines
905 B
C++
40 lines
905 B
C++
/*
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include "EventLoopPluginSerenity.h"
|
|
#include <AK/Function.h>
|
|
#include <AK/NonnullRefPtr.h>
|
|
#include <LibCore/EventLoop.h>
|
|
#include <LibWeb/Platform/TimerSerenity.h>
|
|
|
|
namespace Web::Platform {
|
|
|
|
EventLoopPluginSerenity::EventLoopPluginSerenity() = default;
|
|
EventLoopPluginSerenity::~EventLoopPluginSerenity() = default;
|
|
|
|
void EventLoopPluginSerenity::spin_until(Function<bool()> goal_condition)
|
|
{
|
|
Core::EventLoop::current().spin_until(move(goal_condition));
|
|
}
|
|
|
|
void EventLoopPluginSerenity::deferred_invoke(Function<void()> function)
|
|
{
|
|
VERIFY(function);
|
|
Core::deferred_invoke(move(function));
|
|
}
|
|
|
|
NonnullRefPtr<Timer> EventLoopPluginSerenity::create_timer()
|
|
{
|
|
return TimerSerenity::create();
|
|
}
|
|
|
|
void EventLoopPluginSerenity::quit()
|
|
{
|
|
Core::EventLoop::current().quit(0);
|
|
}
|
|
|
|
}
|