summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HighResolutionTime/Performance.h
blob: 15fd0fa0c2488f141a6467881275708a9ee4c540 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
 * Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/StdLibExtras.h>
#include <LibCore/ElapsedTimer.h>
#include <LibWeb/Bindings/Wrappable.h>
#include <LibWeb/DOM/EventTarget.h>
#include <LibWeb/NavigationTiming/PerformanceTiming.h>

namespace Web::HighResolutionTime {

class Performance final
    : public DOM::EventTarget
    , public Bindings::Wrappable {
public:
    using WrapperType = Bindings::PerformanceWrapper;
    using AllowOwnPtr = TrueType;

    explicit Performance(HTML::Window&);
    ~Performance();

    double now() const { return m_timer.elapsed(); }
    double time_origin() const;

    RefPtr<NavigationTiming::PerformanceTiming> 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:
    HTML::Window& m_window;
    Core::ElapsedTimer m_timer;

    OwnPtr<NavigationTiming::PerformanceTiming> m_timing;
};

}