1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:58:11 +00:00

LibWeb: Stub out HTML::EventLoop::process() with spec FIXME's

This commit is contained in:
Andreas Kling 2021-09-09 00:18:04 +02:00
parent c8c9112652
commit 0554d96a2e
2 changed files with 93 additions and 0 deletions

View file

@ -20,6 +20,7 @@ public:
TaskQueue const& task_queue() const { return m_task_queue; }
void spin_until(Function<bool()> goal_condition);
void process();
Task const* currently_running_task() const { return m_currently_running_task; }