ladybird/Userland/Libraries/LibWeb/NavigationTiming/PerformanceTiming.cpp
Andreas Kling e1287a9a45 LibWeb: Use RefCountForwarder for NavigationTiming::PerformanceTiming
This object already forwarded its ref count to DOM::Window. This patch
simply adopts the new RefCountForwarder base to achieve the same thing.
2021-12-09 21:28:52 +01:00

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()
{
}
}