ladybird/Userland/Libraries/LibWeb/NavigationTiming/PerformanceTiming.h
Brian Gianforcaro 1682f0b760 Everything: Move to SPDX license identifiers in all files.
SPDX License Identifiers are a more compact / standardized
way of representing file license information.

See: https://spdx.dev/resources/use/#identifiers

This was done with the `ambr` search and replace tool.

 ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-04-22 11:22:27 +02:00

51 lines
1.4 KiB
C++

/*
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/StdLibExtras.h>
#include <LibWeb/Bindings/Wrappable.h>
namespace Web::NavigationTiming {
class PerformanceTiming final : public Bindings::Wrappable {
public:
using WrapperType = Bindings::PerformanceTimingWrapper;
using AllowOwnPtr = TrueType;
explicit PerformanceTiming(DOM::Window&);
~PerformanceTiming();
void ref();
void unref();
u32 navigation_start() { return 0; }
u32 unload_event_start() { return 0; }
u32 unload_event_end() { return 0; }
u32 redirect_start() { return 0; }
u32 redirect_end() { return 0; }
u32 fetch_start() { return 0; }
u32 domain_lookup_start() { return 0; }
u32 domain_lookup_end() { return 0; }
u32 connect_start() { return 0; }
u32 connect_end() { return 0; }
u32 secure_connection_start() { return 0; }
u32 request_start() { return 0; }
u32 response_start() { return 0; }
u32 response_end() { return 0; }
u32 dom_loading() { return 0; }
u32 dom_interactive() { return 0; }
u32 dom_content_loaded_event_start() { return 0; }
u32 dom_content_loaded_event_end() { return 0; }
u32 dom_complete() { return 0; }
u32 load_event_start() { return 0; }
u32 load_event_end() { return 0; }
private:
DOM::Window& m_window;
};
}