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

Unified Diff: sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart

Issue 94043006: Rerun go.sh (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 11 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 | « sdk/lib/html/dartium/html_dartium.dart ('k') | sdk/lib/indexed_db/dartium/indexed_db_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart
diff --git a/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart b/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart
index 1068f9cffe5667df2883a37fdf96dc8a1cf2b722..a54fde34748d6f80e96e686d21cad8f417fe653b 100644
--- a/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart
+++ b/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart
@@ -1122,6 +1122,11 @@ class ObjectStore extends Interceptor native "IDBObjectStore" {
@Creates('Cursor')
Request _openCursor(Object key, [String direction]) native;
+ @DomName('IDBObjectStore.openKeyCursor')
+ @DocsEditable()
+ @Experimental() // untriaged
+ Request openKeyCursor(Object range, String direction) native;
+
@DomName('IDBObjectStore.put')
@DocsEditable()
@Returns('Request')
@@ -1412,6 +1417,11 @@ class VersionChangeEvent extends Event native "IDBVersionChangeEvent" {
@Experimental() // untriaged
final String dataLoss;
+ @DomName('IDBVersionChangeEvent.dataLossMessage')
+ @DocsEditable()
+ @Experimental() // untriaged
+ final String dataLossMessage;
+
@DomName('IDBVersionChangeEvent.newVersion')
@DocsEditable()
@Creates('int|String|Null')
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | sdk/lib/indexed_db/dartium/indexed_db_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698