| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 part of blink; | 5 part of _blink; |
| 6 | 6 |
| 7 // _Utils native entry points | 7 // _Utils native entry points |
| 8 Native_Utils_window() native "Utils_window"; | 8 Native_Utils_window() native "Utils_window"; |
| 9 | 9 |
| 10 Native_Utils_forwardingPrint(message) native "Utils_forwardingPrint"; | 10 Native_Utils_forwardingPrint(message) native "Utils_forwardingPrint"; |
| 11 | 11 |
| 12 Native_Utils_spawnDomUri(uri) native "Utils_spawnDomUri"; | 12 Native_Utils_spawnDomUri(uri) native "Utils_spawnDomUri"; |
| 13 | 13 |
| 14 Native_Utils_register(document, tag, customType, extendsTagName) native "Utils_r
egister"; | 14 Native_Utils_register(document, tag, customType, extendsTagName) native "Utils_r
egister"; |
| 15 | 15 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 // _DOMStringMap native entry points | 49 // _DOMStringMap native entry points |
| 50 Native_DOMStringMap_containsKey(_DOMStringMap, key) native "DOMStringMap_contain
sKey_Callback"; | 50 Native_DOMStringMap_containsKey(_DOMStringMap, key) native "DOMStringMap_contain
sKey_Callback"; |
| 51 | 51 |
| 52 Native_DOMStringMap_item(_DOMStringMap, key) native "DOMStringMap_item_Callback"
; | 52 Native_DOMStringMap_item(_DOMStringMap, key) native "DOMStringMap_item_Callback"
; |
| 53 | 53 |
| 54 Native_DOMStringMap_setItem(_DOMStringMap, key, value) native "DOMStringMap_setI
tem_Callback"; | 54 Native_DOMStringMap_setItem(_DOMStringMap, key, value) native "DOMStringMap_setI
tem_Callback"; |
| 55 | 55 |
| 56 Native_DOMStringMap_remove(_DOMStringMap, key) native "DOMStringMap_remove_Callb
ack"; | 56 Native_DOMStringMap_remove(_DOMStringMap, key) native "DOMStringMap_remove_Callb
ack"; |
| 57 | 57 |
| 58 Native_DOMStringMap_get_keys(_DOMStringMap) native "DOMStringMap_getKeys_Callbac
k"; | 58 Native_DOMStringMap_get_keys(_DOMStringMap) native "DOMStringMap_getKeys_Callbac
k"; |
| OLD | NEW |