| 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; |
| 11 import 'dart:html_common'; | 11 import 'dart:html_common'; |
| 12 import 'dart:indexed_db'; | 12 import 'dart:indexed_db'; |
| 13 import 'dart:isolate'; | 13 import 'dart:isolate'; |
| 14 import "dart:convert"; | 14 import "dart:convert"; |
| 15 import 'dart:math'; | 15 import 'dart:math'; |
| 16 import 'dart:mirrors'; | 16 import 'dart:mirrors'; |
| 17 import 'dart:nativewrappers'; | 17 import 'dart:nativewrappers'; |
| 18 import 'dart:typed_data'; | 18 import 'dart:typed_data'; |
| 19 import 'dart:web_gl' as gl; | 19 import 'dart:web_gl' as gl; |
| 20 import 'dart:web_gl' show web_glBlinkMap; | 20 import 'dart:web_gl' show web_glBlinkMap; |
| 21 import 'dart:web_sql'; | 21 import 'dart:web_sql'; |
| 22 import 'dart:svg' as svg; | 22 import 'dart:svg' as svg; |
| 23 import 'dart:svg' show Matrix; | 23 import 'dart:svg' show Matrix; |
| 24 import 'dart:svg' show SvgSvgElement; | 24 import 'dart:svg' show SvgSvgElement; |
| 25 import 'dart:svg' show svgBlinkMap; | 25 import 'dart:svg' show svgBlinkMap; |
| 26 import 'dart:web_audio' show AudioNode, AudioParam; | 26 import 'dart:web_audio' show AudioNode, AudioParam, web_audioBlinkMap; |
| 27 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 27 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 28 // for details. All rights reserved. Use of this source code is governed by a | 28 // for details. All rights reserved. Use of this source code is governed by a |
| 29 // BSD-style license that can be found in the LICENSE file. | 29 // BSD-style license that can be found in the LICENSE file. |
| 30 | 30 |
| 31 // DO NOT EDIT | 31 // DO NOT EDIT |
| 32 // Auto-generated dart:_blink library. | 32 // Auto-generated dart:_blink library. |
| 33 | 33 |
| 34 // TODO(leafp) These are mostly copied over from dart:html. When | 34 // TODO(leafp) These are mostly copied over from dart:html. When |
| 35 // we shift dart:blink generation over to dartium, this dependency | 35 // we shift dart:blink generation over to dartium, this dependency |
| 36 // should go away, or at least be reconsidered. | 36 // should go away, or at least be reconsidered. |
| (...skipping 8559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8596 // _DOMStringMap native entry points | 8596 // _DOMStringMap native entry points |
| 8597 Native_DOMStringMap_containsKey(_DOMStringMap, key) native "DOMStringMap_contain
sKey_Callback"; | 8597 Native_DOMStringMap_containsKey(_DOMStringMap, key) native "DOMStringMap_contain
sKey_Callback"; |
| 8598 | 8598 |
| 8599 Native_DOMStringMap_item(_DOMStringMap, key) native "DOMStringMap_item_Callback"
; | 8599 Native_DOMStringMap_item(_DOMStringMap, key) native "DOMStringMap_item_Callback"
; |
| 8600 | 8600 |
| 8601 Native_DOMStringMap_setItem(_DOMStringMap, key, value) native "DOMStringMap_setI
tem_Callback"; | 8601 Native_DOMStringMap_setItem(_DOMStringMap, key, value) native "DOMStringMap_setI
tem_Callback"; |
| 8602 | 8602 |
| 8603 Native_DOMStringMap_remove(_DOMStringMap, key) native "DOMStringMap_remove_Callb
ack"; | 8603 Native_DOMStringMap_remove(_DOMStringMap, key) native "DOMStringMap_remove_Callb
ack"; |
| 8604 | 8604 |
| 8605 Native_DOMStringMap_get_keys(_DOMStringMap) native "DOMStringMap_getKeys_Callbac
k"; | 8605 Native_DOMStringMap_get_keys(_DOMStringMap) native "DOMStringMap_getKeys_Callbac
k"; |
| OLD | NEW |