Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(243)

Unified Diff: third_party/WebCore/page/PerformanceResourceTiming.idl

Issue 10769002: Roll IDL to multivm@683 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix notifications path in fremontcut. Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebCore/page/PerformanceEntry.idl ('k') | third_party/WebCore/testing/InternalSettings.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
};
}
« no previous file with comments | « third_party/WebCore/page/PerformanceEntry.idl ('k') | third_party/WebCore/testing/InternalSettings.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698