/* * Copyright (c) 2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include namespace Web::HighResolutionTime { class Performance final : public DOM::EventTarget , public Bindings::Wrappable { public: using WrapperType = Bindings::PerformanceWrapper; using AllowOwnPtr = TrueType; explicit Performance(DOM::Window&); ~Performance(); double now() const { return m_timer.elapsed(); } double time_origin() const; RefPtr timing() { return *m_timing; } virtual void ref_event_target() override; virtual void unref_event_target() override; virtual JS::Object* create_wrapper(JS::GlobalObject&) override; private: DOM::Window& m_window; Core::ElapsedTimer m_timer; OwnPtr m_timing; }; }