| Index: third_party/WebCore/page/PerformanceResourceTiming.idl
|
| diff --git a/third_party/WebCore/page/PerformanceEntry.idl b/third_party/WebCore/page/PerformanceResourceTiming.idl
|
| similarity index 67%
|
| copy from third_party/WebCore/page/PerformanceEntry.idl
|
| copy to third_party/WebCore/page/PerformanceResourceTiming.idl
|
| index a788bd9c6e427bcd06c0ad4562594cec313eeb4d..3e0ad59ce84bf13d21b14989b9f103e169e8f238 100644
|
| --- a/third_party/WebCore/page/PerformanceEntry.idl
|
| +++ b/third_party/WebCore/page/PerformanceResourceTiming.idl
|
| @@ -30,15 +30,23 @@
|
|
|
| module window {
|
|
|
| - // See: https://dvcs.w3.org/hg/webperf/raw-file/tip/specs/PerformanceTimeline/Overview.html
|
| + // See: https://dvcs.w3.org/hg/webperf/raw-file/tip/specs/ResourceTiming/Overview.html
|
| interface [
|
| - Conditional=WEB_TIMING,
|
| - Conditional=PERFORMANCE_TIMELINE,
|
| + Conditional=RESOURCE_TIMING,
|
| OmitConstructor
|
| - ] PerformanceEntry {
|
| - readonly attribute DOMString name;
|
| - readonly attribute DOMString entryType;
|
| - readonly attribute double startTime;
|
| - readonly attribute double duration;
|
| + ] PerformanceResourceTiming : PerformanceEntry {
|
| + readonly attribute DOMString initiatorType;
|
| +
|
| + readonly attribute double redirectStart;
|
| + readonly attribute double redirectEnd;
|
| + readonly attribute double fetchStart;
|
| + readonly attribute double domainLookupStart;
|
| + readonly attribute double domainLookupEnd;
|
| + readonly attribute double connectStart;
|
| + readonly attribute double connectEnd;
|
| + readonly attribute double secureConnectionStart;
|
| + readonly attribute double requestStart;
|
| + readonly attribute double responseStart;
|
| + readonly attribute double responseEnd;
|
| };
|
| }
|
|
|