| OLD | NEW |
| 1 /** | 1 /** |
| 2 * This library provides entry points to the native Blink code which backs | 2 * This library provides entry points to the native Blink code which backs |
| 3 * up the dart:html library. | 3 * up the dart:html library. |
| 4 */ | 4 */ |
| 5 library dart.dom._blink; | 5 library dart.dom._blink; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 import 'dart:collection'; | 8 import 'dart:collection'; |
| 9 import 'dart:html'; | 9 import 'dart:html'; |
| 10 import 'dart:_internal' hide Symbol, deprecated; | 10 import 'dart:_internal' hide Symbol, deprecated; |
| (...skipping 3637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3648 Native_IDBDatabase_version_Getter(mthis) native "IDBDatabase_version_Getter"; | 3648 Native_IDBDatabase_version_Getter(mthis) native "IDBDatabase_version_Getter"; |
| 3649 | 3649 |
| 3650 Native_IDBDatabase_close_Callback(mthis) native "IDBDatabase_close_Callback_RESO
LVER_STRING_0_"; | 3650 Native_IDBDatabase_close_Callback(mthis) native "IDBDatabase_close_Callback_RESO
LVER_STRING_0_"; |
| 3651 | 3651 |
| 3652 Native_IDBDatabase_createObjectStore_Callback(mthis, name, options) native "IDBD
atabase_createObjectStore_Callback_RESOLVER_STRING_2_DOMString_Dictionary"; | 3652 Native_IDBDatabase_createObjectStore_Callback(mthis, name, options) native "IDBD
atabase_createObjectStore_Callback_RESOLVER_STRING_2_DOMString_Dictionary"; |
| 3653 | 3653 |
| 3654 Native_IDBDatabase_deleteObjectStore_Callback(mthis, name) native "IDBDatabase_d
eleteObjectStore_Callback_RESOLVER_STRING_1_DOMString"; | 3654 Native_IDBDatabase_deleteObjectStore_Callback(mthis, name) native "IDBDatabase_d
eleteObjectStore_Callback_RESOLVER_STRING_1_DOMString"; |
| 3655 | 3655 |
| 3656 // Generated overload resolver | 3656 // Generated overload resolver |
| 3657 Native_IDBDatabase_transaction(mthis, storeName_OR_storeNames, mode) { | 3657 Native_IDBDatabase_transaction(mthis, storeName_OR_storeNames, mode) { |
| 3658 if ((mode is String || mode == null) && (storeName_OR_storeNames is List<Str
ing> || storeName_OR_storeNames == null)) { | 3658 if ((mode is String || mode == null) && (storeName_OR_storeNames is DomStrin
gList || storeName_OR_storeNames == null)) { |
| 3659 return Native_IDBDatabase__transaction_1_Callback(mthis, storeName_OR_stor
eNames, mode); | 3659 return Native_IDBDatabase__transaction_1_Callback(mthis, storeName_OR_stor
eNames, mode); |
| 3660 } | 3660 } |
| 3661 if ((mode is String || mode == null) && (storeName_OR_storeNames is List<Str
ing> || storeName_OR_storeNames == null)) { | 3661 if ((mode is String || mode == null) && (storeName_OR_storeNames is List<Str
ing> || storeName_OR_storeNames == null)) { |
| 3662 return Native_IDBDatabase__transaction_2_Callback(mthis, storeName_OR_stor
eNames, mode); | 3662 return Native_IDBDatabase__transaction_2_Callback(mthis, storeName_OR_stor
eNames, mode); |
| 3663 } | 3663 } |
| 3664 if ((mode is String || mode == null) && (storeName_OR_storeNames is String |
| storeName_OR_storeNames == null)) { | 3664 if ((mode is String || mode == null) && (storeName_OR_storeNames is String |
| storeName_OR_storeNames == null)) { |
| 3665 return Native_IDBDatabase__transaction_3_Callback(mthis, storeName_OR_stor
eNames, mode); | 3665 return Native_IDBDatabase__transaction_3_Callback(mthis, storeName_OR_stor
eNames, mode); |
| 3666 } | 3666 } |
| 3667 throw new ArgumentError("Incorrect number or type of arguments"); | 3667 throw new ArgumentError("Incorrect number or type of arguments"); |
| 3668 } | 3668 } |
| (...skipping 4585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8254 // _DOMStringMap native entry points | 8254 // _DOMStringMap native entry points |
| 8255 Native_DOMStringMap_containsKey(_DOMStringMap, key) native "DOMStringMap_contain
sKey_Callback"; | 8255 Native_DOMStringMap_containsKey(_DOMStringMap, key) native "DOMStringMap_contain
sKey_Callback"; |
| 8256 | 8256 |
| 8257 Native_DOMStringMap_item(_DOMStringMap, key) native "DOMStringMap_item_Callback"
; | 8257 Native_DOMStringMap_item(_DOMStringMap, key) native "DOMStringMap_item_Callback"
; |
| 8258 | 8258 |
| 8259 Native_DOMStringMap_setItem(_DOMStringMap, key, value) native "DOMStringMap_setI
tem_Callback"; | 8259 Native_DOMStringMap_setItem(_DOMStringMap, key, value) native "DOMStringMap_setI
tem_Callback"; |
| 8260 | 8260 |
| 8261 Native_DOMStringMap_remove(_DOMStringMap, key) native "DOMStringMap_remove_Callb
ack"; | 8261 Native_DOMStringMap_remove(_DOMStringMap, key) native "DOMStringMap_remove_Callb
ack"; |
| 8262 | 8262 |
| 8263 Native_DOMStringMap_get_keys(_DOMStringMap) native "DOMStringMap_getKeys_Callbac
k"; | 8263 Native_DOMStringMap_get_keys(_DOMStringMap) native "DOMStringMap_getKeys_Callbac
k"; |
| OLD | NEW |