| OLD | NEW |
| (Empty) |
| 1 /** | |
| 2 * High-fidelity audio programming in the browser. | |
| 3 */ | |
| 4 library dart.dom.web_audio; | |
| 5 | |
| 6 import 'dart:async'; | |
| 7 import 'dart:collection'; | |
| 8 import 'dart:_internal'; | |
| 9 import 'dart:html'; | |
| 10 import 'dart:html_common'; | |
| 11 import 'dart:_native_typed_data'; | |
| 12 import 'dart:typed_data'; | |
| 13 import 'dart:_js_helper' show Creates, JSName, Native, Returns, convertDartClosu
reToJS; | |
| 14 import 'dart:_foreign_helper' show JS; | |
| 15 import 'dart:_interceptors' show Interceptor; | |
| 16 // DO NOT EDIT - unless you are editing documentation as per: | |
| 17 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation | |
| 18 // Auto-generated dart:audio library. | |
| 19 | |
| 20 | |
| 21 | |
| 22 | |
| 23 // FIXME: Can we make this private? | |
| 24 final web_audioBlinkMap = { | |
| 25 | |
| 26 }; | |
| 27 | |
| 28 // FIXME: Can we make this private? | |
| 29 final web_audioBlinkFunctionMap = { | |
| 30 | |
| 31 }; | |
| OLD | NEW |