mirror of
https://github.com/RGBCube/serenity
synced 2025-05-24 08:15:07 +00:00

The Window object is part of the HTML spec. :^) https://html.spec.whatwg.org/multipage/window-object.html
20 lines
346 B
C++
20 lines
346 B
C++
/*
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/NavigationTiming/PerformanceTiming.h>
|
|
|
|
namespace Web::NavigationTiming {
|
|
|
|
PerformanceTiming::PerformanceTiming(HTML::Window& window)
|
|
: RefCountForwarder(window)
|
|
{
|
|
}
|
|
|
|
PerformanceTiming::~PerformanceTiming()
|
|
{
|
|
}
|
|
|
|
}
|