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

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

This commit is contained in:
Andreas Kling 2021-09-08 23:50:32 +02:00
parent ecb72f3b57
commit 462120d900
2 changed files with 28 additions and 0 deletions

View file

@ -19,6 +19,8 @@ public:
TaskQueue& task_queue() { return m_task_queue; }
TaskQueue const& task_queue() const { return m_task_queue; }
void spin_until(Function<bool()> goal_condition);
private:
TaskQueue m_task_queue;
};