LibWeb: Let HTML::EventLoop drive animation frame callbacks

This commit is contained in:
Andreas Kling 2021-10-03 16:28:14 +02:00
commit 81ef2b646e
Notes: sideshowbarker 2024-07-18 03:08:48 +09:00
3 changed files with 36 additions and 6 deletions

View file

@ -116,4 +116,6 @@ private:
HashMap<i32, NonnullRefPtr<RequestAnimationFrameCallback>> m_request_animation_frame_callbacks;
};
void run_animation_frame_callbacks(DOM::Document&, double now);
}