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

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

Issue 10358016: Roll IDL to multivm@477 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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/Performance.idl ('k') | third_party/WebCore/page/PerformanceEntryList.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebCore/page/PerformanceEntry.idl
diff --git a/third_party/WebCore/page/Performance.idl b/third_party/WebCore/page/PerformanceEntry.idl
similarity index 80%
copy from third_party/WebCore/page/Performance.idl
copy to third_party/WebCore/page/PerformanceEntry.idl
index d50b84bf19c130063575e55fbaec3475df9f828c..a788bd9c6e427bcd06c0ad4562594cec313eeb4d 100644
--- a/third_party/WebCore/page/Performance.idl
+++ b/third_party/WebCore/page/PerformanceEntry.idl
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2010 Google Inc. All rights reserved.
+ * Copyright (C) 2012 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
@@ -30,14 +30,15 @@
module window {
- // See: http://dev.w3.org/2006/webapi/WebTiming/
+ // See: https://dvcs.w3.org/hg/webperf/raw-file/tip/specs/PerformanceTimeline/Overview.html
interface [
Conditional=WEB_TIMING,
+ Conditional=PERFORMANCE_TIMELINE,
OmitConstructor
- ] Performance {
- readonly attribute PerformanceNavigation navigation;
- readonly attribute PerformanceTiming timing;
- readonly attribute [V8CustomGetter] MemoryInfo memory;
+ ] PerformanceEntry {
+ readonly attribute DOMString name;
+ readonly attribute DOMString entryType;
+ readonly attribute double startTime;
+ readonly attribute double duration;
};
-
}
« no previous file with comments | « third_party/WebCore/page/Performance.idl ('k') | third_party/WebCore/page/PerformanceEntryList.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698