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

Unified Diff: sdk/lib/indexed_db/dartium/indexed_db_dartium.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/indexed_db/dart2js/indexed_db_dart2js.dart ('k') | sdk/lib/svg/dart2js/svg_dart2js.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
diff --git a/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart b/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
index ae72ed06beaf6e0276a1ad6ba9acc410eab7455c..b2dbd4c20a80ab3c8f6fd754bad7cc99354c7ce0 100644
--- a/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
+++ b/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
@@ -823,6 +823,11 @@ class ObjectStore extends NativeFieldWrapperClass2 {
@DocsEditable()
Request _openCursor(Object key, [String direction]) native "IDBObjectStore_openCursor_Callback";
+ @DomName('IDBObjectStore.openKeyCursor')
+ @DocsEditable()
+ @Experimental() // untriaged
+ Request openKeyCursor(Object range, String direction) native "IDBObjectStore_openKeyCursor_Callback";
+
@DomName('IDBObjectStore.put')
@DocsEditable()
Request _put(Object value, [Object key]) native "IDBObjectStore_put_Callback";
@@ -1114,6 +1119,11 @@ class VersionChangeEvent extends Event {
@Experimental() // untriaged
String get dataLoss native "IDBVersionChangeEvent_dataLoss_Getter";
+ @DomName('IDBVersionChangeEvent.dataLossMessage')
+ @DocsEditable()
+ @Experimental() // untriaged
+ String get dataLossMessage native "IDBVersionChangeEvent_dataLossMessage_Getter";
+
@DomName('IDBVersionChangeEvent.newVersion')
@DocsEditable()
dynamic get newVersion native "IDBVersionChangeEvent_newVersion_Getter";
« no previous file with comments | « sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart ('k') | sdk/lib/svg/dart2js/svg_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698