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

Unified Diff: sdk/lib/html/dart2js/html_dart2js.dart

Issue 13843029: WebKit IDL roll. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dart2js/html_dart2js.dart
diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
index 917f711df006e5cb83a7c5c75dcb12b45279670f..2a3bd0f7e062bb813c10da4b31b8d2bca22dd478 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -17199,7 +17199,7 @@ class Performance extends EventTarget native "Performance" {
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.SAFARI)
@Experimental
- PerformanceEntryList getEntries() native;
+ List<PerformanceEntry> getEntries() native;
@JSName('webkitGetEntriesByName')
@DomName('Performance.webkitGetEntriesByName')
@@ -17207,7 +17207,7 @@ class Performance extends EventTarget native "Performance" {
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.SAFARI)
@Experimental
- PerformanceEntryList getEntriesByName(String name, String entryType) native;
+ List<PerformanceEntry> getEntriesByName(String name, String entryType) native;
@JSName('webkitGetEntriesByType')
@DomName('Performance.webkitGetEntriesByType')
@@ -17215,7 +17215,7 @@ class Performance extends EventTarget native "Performance" {
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.SAFARI)
@Experimental
- PerformanceEntryList getEntriesByType(String entryType) native;
+ List<PerformanceEntry> getEntriesByType(String entryType) native;
@JSName('webkitMark')
@DomName('Performance.webkitMark')
@@ -22611,7 +22611,7 @@ class Window extends EventTarget implements WindowBase native "Window,DOMWindow"
@SupportedBrowser(SupportedBrowser.IE, '10.0')
@Experimental
IdbFactory get indexedDB =>
- JS('IdbFactory|Null',
+ JS('IdbFactory|Null', // If not supported, returns `null`.
'#.indexedDB || #.webkitIndexedDB || #.mozIndexedDB',
this, this, this);
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698