| OLD | NEW |
| 1 library dart.dom.indexed_db; | 1 library dart.dom.indexed_db; |
| 2 | 2 |
| 3 import 'dart:async'; | 3 import 'dart:async'; |
| 4 import 'dart:html'; | 4 import 'dart:html'; |
| 5 import 'dart:html_common'; | 5 import 'dart:html_common'; |
| 6 import 'dart:nativewrappers'; | 6 import 'dart:nativewrappers'; |
| 7 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 8 // for details. All rights reserved. Use of this source code is governed by a | 8 // for details. All rights reserved. Use of this source code is governed by a |
| 9 // BSD-style license that can be found in the LICENSE file. | 9 // BSD-style license that can be found in the LICENSE file. |
| 10 | 10 |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 } | 204 } |
| 205 throw new ArgumentError("Incorrect number or type of arguments"); | 205 throw new ArgumentError("Incorrect number or type of arguments"); |
| 206 } | 206 } |
| 207 | 207 |
| 208 Transaction _transaction_1(storeName_OR_storeNames, mode) native "IDBDatabase_
_transaction_1_Callback"; | 208 Transaction _transaction_1(storeName_OR_storeNames, mode) native "IDBDatabase_
_transaction_1_Callback"; |
| 209 | 209 |
| 210 Transaction _transaction_2(storeName_OR_storeNames, mode) native "IDBDatabase_
_transaction_2_Callback"; | 210 Transaction _transaction_2(storeName_OR_storeNames, mode) native "IDBDatabase_
_transaction_2_Callback"; |
| 211 | 211 |
| 212 Transaction _transaction_3(storeName_OR_storeNames, mode) native "IDBDatabase_
_transaction_3_Callback"; | 212 Transaction _transaction_3(storeName_OR_storeNames, mode) native "IDBDatabase_
_transaction_3_Callback"; |
| 213 | 213 |
| 214 @DomName('IDBDatabase.transactionList') |
| 215 @DocsEditable |
| 216 Transaction transactionList(List<String> storeNames, String mode) native "IDBD
atabase_transactionList_Callback"; |
| 217 |
| 218 @DomName('IDBDatabase.transactionStore') |
| 219 @DocsEditable |
| 220 Transaction transactionStore(String storeName, String mode) native "IDBDatabas
e_transactionStore_Callback"; |
| 221 |
| 222 @DomName('IDBDatabase.transactionStores') |
| 223 @DocsEditable |
| 224 Transaction transactionStores(List<String> storeNames, String mode) native "ID
BDatabase_transactionStores_Callback"; |
| 225 |
| 214 @DomName('IDBDatabase.onabort') | 226 @DomName('IDBDatabase.onabort') |
| 215 @DocsEditable | 227 @DocsEditable |
| 216 Stream<Event> get onAbort => abortEvent.forTarget(this); | 228 Stream<Event> get onAbort => abortEvent.forTarget(this); |
| 217 | 229 |
| 218 @DomName('IDBDatabase.onerror') | 230 @DomName('IDBDatabase.onerror') |
| 219 @DocsEditable | 231 @DocsEditable |
| 220 Stream<Event> get onError => errorEvent.forTarget(this); | 232 Stream<Event> get onError => errorEvent.forTarget(this); |
| 221 | 233 |
| 222 @DomName('IDBDatabase.onversionchange') | 234 @DomName('IDBDatabase.onversionchange') |
| 223 @DocsEditable | 235 @DocsEditable |
| (...skipping 902 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1126 // WARNING: Do not edit - generated code. | 1138 // WARNING: Do not edit - generated code. |
| 1127 | 1139 |
| 1128 | 1140 |
| 1129 @DocsEditable | 1141 @DocsEditable |
| 1130 @DomName('IDBAny') | 1142 @DomName('IDBAny') |
| 1131 @deprecated // nonstandard | 1143 @deprecated // nonstandard |
| 1132 abstract class _IDBAny extends NativeFieldWrapperClass1 { | 1144 abstract class _IDBAny extends NativeFieldWrapperClass1 { |
| 1133 _IDBAny.internal(); | 1145 _IDBAny.internal(); |
| 1134 | 1146 |
| 1135 } | 1147 } |
| OLD | NEW |