mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-03 08:08:43 +00:00
Everywhere: Hoist the Libraries folder to the top-level
This commit is contained in:
parent
950e819ee7
commit
93712b24bf
Notes:
github-actions[bot]
2024-11-10 11:51:52 +00:00
Author: https://github.com/trflynn89
Commit: 93712b24bf
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2256
Reviewed-by: https://github.com/sideshowbarker
4547 changed files with 104 additions and 113 deletions
58
Libraries/LibWeb/UserTiming/PerformanceMeasure.h
Normal file
58
Libraries/LibWeb/UserTiming/PerformanceMeasure.h
Normal file
|
@ -0,0 +1,58 @@
|
|||
/*
|
||||
* Copyright (c) 2023, Luke Wilde <lukew@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <LibWeb/PerformanceTimeline/PerformanceEntry.h>
|
||||
|
||||
namespace Web::UserTiming {
|
||||
|
||||
// https://w3c.github.io/user-timing/#dom-performancemeasureoptions
|
||||
struct PerformanceMeasureOptions {
|
||||
JS::Value detail { JS::js_undefined() };
|
||||
Optional<Variant<String, HighResolutionTime::DOMHighResTimeStamp>> start;
|
||||
Optional<HighResolutionTime::DOMHighResTimeStamp> duration;
|
||||
Optional<Variant<String, HighResolutionTime::DOMHighResTimeStamp>> end;
|
||||
};
|
||||
|
||||
// https://w3c.github.io/user-timing/#dom-performancemeasure
|
||||
class PerformanceMeasure final : public PerformanceTimeline::PerformanceEntry {
|
||||
WEB_PLATFORM_OBJECT(PerformanceMeasure, PerformanceTimeline::PerformanceEntry);
|
||||
JS_DECLARE_ALLOCATOR(PerformanceMeasure);
|
||||
|
||||
public:
|
||||
virtual ~PerformanceMeasure();
|
||||
|
||||
[[nodiscard]] static JS::NonnullGCPtr<PerformanceMeasure> create(JS::Realm&, String const& measure_name, HighResolutionTime::DOMHighResTimeStamp start_time, HighResolutionTime::DOMHighResTimeStamp duration, JS::Value detail);
|
||||
|
||||
// NOTE: These three functions are answered by the registry for the given entry type.
|
||||
// https://w3c.github.io/timing-entrytypes-registry/#registry
|
||||
|
||||
// https://w3c.github.io/timing-entrytypes-registry/#dfn-availablefromtimeline
|
||||
static PerformanceTimeline::AvailableFromTimeline available_from_timeline() { return PerformanceTimeline::AvailableFromTimeline::Yes; }
|
||||
|
||||
// https://w3c.github.io/timing-entrytypes-registry/#dfn-maxbuffersize
|
||||
// NOTE: The empty state represents Infinite size.
|
||||
static Optional<u64> max_buffer_size() { return OptionalNone {}; }
|
||||
|
||||
// https://w3c.github.io/timing-entrytypes-registry/#dfn-should-add-entry
|
||||
virtual PerformanceTimeline::ShouldAddEntry should_add_entry(Optional<PerformanceTimeline::PerformanceObserverInit const&> = {}) const override { return PerformanceTimeline::ShouldAddEntry::Yes; }
|
||||
|
||||
virtual FlyString const& entry_type() const override;
|
||||
|
||||
JS::Value detail() const { return m_detail; }
|
||||
|
||||
private:
|
||||
PerformanceMeasure(JS::Realm&, String const& name, HighResolutionTime::DOMHighResTimeStamp start_time, HighResolutionTime::DOMHighResTimeStamp duration, JS::Value detail);
|
||||
|
||||
virtual void initialize(JS::Realm&) override;
|
||||
virtual void visit_edges(JS::Cell::Visitor&) override;
|
||||
|
||||
// https://w3c.github.io/user-timing/#dom-performancemeasure-detail
|
||||
JS::Value m_detail { JS::js_null() };
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue