mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 20:29:18 +00:00
LibWeb: Implement Resource Timing
This commit is contained in:
parent
23c84e62a5
commit
6d1f78198d
Notes:
github-actions[bot]
2025-03-06 16:01:58 +00:00
Author: https://github.com/Lubrsi
Commit: 6d1f78198d
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3704
Reviewed-by: https://github.com/ADKaster ✅
21 changed files with 741 additions and 14 deletions
16
Libraries/LibWeb/PerformanceTimeline/EventNames.cpp
Normal file
16
Libraries/LibWeb/PerformanceTimeline/EventNames.cpp
Normal file
|
@ -0,0 +1,16 @@
|
|||
/*
|
||||
* Copyright (c) 2025, Luke Wilde <luke@ladybird.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include <LibWeb/PerformanceTimeline/EventNames.h>
|
||||
|
||||
namespace Web::PerformanceTimeline::EventNames {
|
||||
|
||||
#define __ENUMERATE_PERFORMANCE_TIMELINE_EVENT(name) \
|
||||
FlyString name = #name##_fly_string;
|
||||
ENUMERATE_PERFORMANCE_TIMELINE_EVENTS
|
||||
#undef __ENUMERATE_PERFORMANCE_TIMELINE_EVENT
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue