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

Unified Diff: sdk/lib/indexed_db/dartium/indexed_db_dartium.dart

Issue 16494002: Expand overloaded methods and optional parameters in the html library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 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
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 d33a30ece459ecd7d6962f7f8e6b810e06804df0..00fae7e160edc3b46341a96ad539d3d3670d10f5 100644
--- a/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
+++ b/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
@@ -211,6 +211,18 @@ class Database extends EventTarget {
Transaction _transaction_3(storeName_OR_storeNames, mode) native "IDBDatabase__transaction_3_Callback";
+ @DomName('IDBDatabase.transactionList')
+ @DocsEditable
+ Transaction transactionList(List<String> storeNames, String mode) native "IDBDatabase_transactionList_Callback";
+
+ @DomName('IDBDatabase.transactionString')
+ @DocsEditable
+ Transaction transactionString(String storeName, String mode) native "IDBDatabase_transactionString_Callback";
+
+ @DomName('IDBDatabase.transactionStringList')
+ @DocsEditable
+ Transaction transactionStringList(List<String> storeNames, String mode) native "IDBDatabase_transactionStringList_Callback";
+
@DomName('IDBDatabase.onabort')
@DocsEditable
Stream<Event> get onAbort => abortEvent.forTarget(this);

Powered by Google App Engine
This is Rietveld 408576698