OLD | NEW |
1 /** | 1 /** |
2 * High-fidelity audio programming in the browser. | 2 * High-fidelity audio programming in the browser. |
3 */ | 3 */ |
4 library dart.dom.web_audio; | 4 library dart.dom.web_audio; |
5 | 5 |
6 import 'dart:async'; | 6 import 'dart:async'; |
7 import 'dart:collection'; | 7 import 'dart:collection'; |
8 import 'dart:_collection-dev' hide deprecated; | 8 import 'dart:_collection-dev' hide deprecated; |
9 import 'dart:html'; | 9 import 'dart:html'; |
10 import 'dart:html_common'; | 10 import 'dart:html_common'; |
11 import 'dart:_native_typed_data'; | 11 import 'dart:typed_data'; |
12 import 'dart:_js_helper' show Creates, JSName, Returns, convertDartClosureToJS; | 12 import 'dart:_js_helper' show Creates, JSName, Returns, convertDartClosureToJS; |
13 import 'dart:_foreign_helper' show JS; | 13 import 'dart:_foreign_helper' show JS; |
14 import 'dart:_interceptors' show Interceptor; | 14 import 'dart:_interceptors' show Interceptor; |
15 // DO NOT EDIT - unless you are editing documentation as per: | 15 // DO NOT EDIT - unless you are editing documentation as per: |
16 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation | 16 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation |
17 // Auto-generated dart:audio library. | 17 // Auto-generated dart:audio library. |
18 | 18 |
19 | 19 |
20 | 20 |
21 | 21 |
(...skipping 1070 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1092 factory WaveShaperNode._() { throw new UnsupportedError("Not supported"); } | 1092 factory WaveShaperNode._() { throw new UnsupportedError("Not supported"); } |
1093 | 1093 |
1094 @DomName('WaveShaperNode.curve') | 1094 @DomName('WaveShaperNode.curve') |
1095 @DocsEditable() | 1095 @DocsEditable() |
1096 Float32List curve; | 1096 Float32List curve; |
1097 | 1097 |
1098 @DomName('WaveShaperNode.oversample') | 1098 @DomName('WaveShaperNode.oversample') |
1099 @DocsEditable() | 1099 @DocsEditable() |
1100 String oversample; | 1100 String oversample; |
1101 } | 1101 } |
OLD | NEW |