diff options
author | Linus Groh <mail@linusgroh.de> | 2022-10-04 21:25:00 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-10-05 09:12:59 +0100 |
commit | 4ea6cc56bed17a0c2231c5ba56ea45dbb7ea135a (patch) | |
tree | b2ed03a2f83aeff7d2b1c72fd806643bbcb06077 /Userland/Libraries/LibWeb/HTML/EventLoop/EventLoop.h | |
parent | ff9a80f54f09888f2057123df1c67225a52a7b35 (diff) | |
download | serenity-4ea6cc56bed17a0c2231c5ba56ea45dbb7ea135a.zip |
LibWeb: Move unsafe_shared_current_time() to HighResolutionTime
This doesn't belong on the EventLoop at all, as far as I can tell.
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/EventLoop/EventLoop.h')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/EventLoop/EventLoop.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/EventLoop/EventLoop.h b/Userland/Libraries/LibWeb/HTML/EventLoop/EventLoop.h index fd30663724..e77f0e066e 100644 --- a/Userland/Libraries/LibWeb/HTML/EventLoop/EventLoop.h +++ b/Userland/Libraries/LibWeb/HTML/EventLoop/EventLoop.h @@ -71,7 +71,6 @@ public: void register_environment_settings_object(Badge<EnvironmentSettingsObject>, EnvironmentSettingsObject&); void unregister_environment_settings_object(Badge<EnvironmentSettingsObject>, EnvironmentSettingsObject&); - double unsafe_shared_current_time() const; double compute_deadline() const; private: |