| 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 class Blink_Utils { | 8 class Blink_Utils { |
| 9 static window() native "Utils_window"; | 9 static window() native "Utils_window"; |
| 10 | 10 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 | 39 |
| 40 static postMessage(_DOMWindowCrossFrame, message, targetOrigin, [messagePorts]
) native "Window_postMessage_Callback"; | 40 static postMessage(_DOMWindowCrossFrame, message, targetOrigin, [messagePorts]
) native "Window_postMessage_Callback"; |
| 41 } | 41 } |
| 42 | 42 |
| 43 class Blink_HistoryCrossFrame { | 43 class Blink_HistoryCrossFrame { |
| 44 // _HistoryCrossFrame native entry points | 44 // _HistoryCrossFrame native entry points |
| 45 static back(_HistoryCrossFrame) native "History_back_Callback"; | 45 static back(_HistoryCrossFrame) native "History_back_Callback"; |
| 46 | 46 |
| 47 static forward(_HistoryCrossFrame) native "History_forward_Callback"; | 47 static forward(_HistoryCrossFrame) native "History_forward_Callback"; |
| 48 | 48 |
| 49 static go(_HistoryCrossFrame, distance) native "History_go_Callback_long"; | 49 static go(_HistoryCrossFrame, distance) native "History_go_Callback"; |
| 50 } | 50 } |
| 51 | 51 |
| 52 class Blink_LocationCrossFrame { | 52 class Blink_LocationCrossFrame { |
| 53 // _LocationCrossFrame native entry points | 53 // _LocationCrossFrame native entry points |
| 54 static set_href(_LocationCrossFrame, h) native "Location_href_Setter"; | 54 static set_href(_LocationCrossFrame, h) native "Location_href_Setter"; |
| 55 } | 55 } |
| 56 | 56 |
| 57 class Blink_DOMStringMap { | 57 class Blink_DOMStringMap { |
| 58 // _DOMStringMap native entry points | 58 // _DOMStringMap native entry points |
| 59 static containsKey(_DOMStringMap, key) native "DOMStringMap_containsKey_Callba
ck"; | 59 static containsKey(_DOMStringMap, key) native "DOMStringMap_containsKey_Callba
ck"; |
| 60 | 60 |
| 61 static item(_DOMStringMap, key) native "DOMStringMap_item_Callback"; | 61 static item(_DOMStringMap, key) native "DOMStringMap_item_Callback"; |
| 62 | 62 |
| 63 static setItem(_DOMStringMap, key, value) native "DOMStringMap_setItem_Callbac
k"; | 63 static setItem(_DOMStringMap, key, value) native "DOMStringMap_setItem_Callbac
k"; |
| 64 | 64 |
| 65 static remove(_DOMStringMap, key) native "DOMStringMap_remove_Callback"; | 65 static remove(_DOMStringMap, key) native "DOMStringMap_remove_Callback"; |
| 66 | 66 |
| 67 static get_keys(_DOMStringMap) native "DOMStringMap_getKeys_Callback"; | 67 static get_keys(_DOMStringMap) native "DOMStringMap_getKeys_Callback"; |
| 68 } | 68 } |
| OLD | NEW |