mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-04 18:23:39 +00:00
This object already forwarded its ref count to DOM::Window. This patch simply adopts the new RefCountForwarder base to achieve the same thing.
20 lines
345 B
C++
20 lines
345 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(DOM::Window& window)
|
|
: RefCountForwarder(window)
|
|
{
|
|
}
|
|
|
|
PerformanceTiming::~PerformanceTiming()
|
|
{
|
|
}
|
|
|
|
}
|