We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7969e04 + 6533456 commit 23f3bf4Copy full SHA for 23f3bf4
src/browser/dom/performance.zig
@@ -76,6 +76,19 @@ pub const Performance = struct {
76
pub fn _clearMeasures(_: *Performance, name: ?[]const u8) void {
77
_ = name;
78
}
79
+
80
+ // TODO: fn _measures should record the marks in a lookup
81
+ pub fn _getEntriesByName(_: *Performance, name: []const u8, typ: ?[]const u8) []PerformanceEntry {
82
+ _ = name;
83
+ _ = typ;
84
+ return &.{};
85
+ }
86
87
88
+ pub fn _getEntriesByType(_: *Performance, typ: []const u8) []PerformanceEntry {
89
90
91
92
};
93
94
// https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry
0 commit comments