mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 18:35:07 +00:00

NewAKString is effectively the default for any new IDL interface, so let's mark this as the default behavior. It also makes it much easier to figure out whatever interfaces are still left to port over to new AK String.
13 lines
349 B
Text
13 lines
349 B
Text
#import <PerformanceTimeline/PerformanceEntry.idl>
|
|
|
|
[Exposed=(Window,Worker)]
|
|
interface PerformanceMeasure : PerformanceEntry {
|
|
readonly attribute any detail;
|
|
};
|
|
|
|
dictionary PerformanceMeasureOptions {
|
|
any detail;
|
|
(DOMString or DOMHighResTimeStamp) start;
|
|
DOMHighResTimeStamp duration;
|
|
(DOMString or DOMHighResTimeStamp) end;
|
|
};
|