| 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 fa39c0be6715f271d34552a517b902c2347b5791..d0150068df1d0dc04d95dcb1439039cce8d9440a 100644
|
| --- a/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart
|
| +++ b/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart
|
| @@ -268,6 +268,31 @@ class Database extends EventTarget native "IDBDatabase" {
|
| return _transaction(storeName_OR_storeNames, mode);
|
| }
|
|
|
| + Transaction transactionStore(String storeName, String mode) {
|
| + if (mode != 'readonly' && mode != 'readwrite') {
|
| + throw new ArgumentError(mode);
|
| + }
|
| + // Try and create a transaction with a string mode. Browsers that expect a
|
| + // numeric mode tend to convert the string into a number. This fails
|
| + // silently, resulting in zero ('readonly').
|
| + return _transaction(storeName, mode);
|
| + }
|
| +
|
| + Transaction transactionList(List<String> storeNames, String mode) {
|
| + if (mode != 'readonly' && mode != 'readwrite') {
|
| + throw new ArgumentError(mode);
|
| + }
|
| + List storeNames_1 = convertDartToNative_StringArray(storeNames);
|
| + return _transaction(storeNames_1, mode);
|
| + }
|
| +
|
| + Transaction transactionStores(DomStringList storeNames, String mode) {
|
| + if (mode != 'readonly' && mode != 'readwrite') {
|
| + throw new ArgumentError(mode);
|
| + }
|
| + return _transaction(storeNames_1, mode);
|
| + }
|
| +
|
| @JSName('transaction')
|
| Transaction _transaction(stores, mode) native;
|
|
|
|
|