1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:27:45 +00:00

LibWeb: Use a precise timer for performance timestamps

This commit is contained in:
Tim Ledbetter 2024-02-26 17:52:03 +00:00 committed by Andrew Kaster
parent 679fe00d10
commit 05c571bf9b

View file

@ -23,6 +23,7 @@ JS_DEFINE_ALLOCATOR(Performance);
Performance::Performance(HTML::Window& window) Performance::Performance(HTML::Window& window)
: DOM::EventTarget(window.realm()) : DOM::EventTarget(window.realm())
, m_window(window) , m_window(window)
, m_timer(Core::TimerType::Precise)
{ {
m_timer.start(); m_timer.start();
} }