| OLD | NEW |
| 1 library dart.dom.web_audio; | 1 library dart.dom.web_audio; |
| 2 | 2 |
| 3 import 'dart:async'; | 3 import 'dart:async'; |
| 4 import 'dart:collection'; | 4 import 'dart:collection'; |
| 5 import 'dart:_collection-dev'; | 5 import 'dart:_collection-dev'; |
| 6 import 'dart:html'; | 6 import 'dart:html'; |
| 7 import 'dart:html_common'; | 7 import 'dart:html_common'; |
| 8 import 'dart:typed_data'; | 8 import 'dart:typed_data'; |
| 9 import 'dart:_js_helper' show Creates, JSName, Returns, convertDartClosureToJS; | 9 import 'dart:_js_helper' show Creates, JSName, Returns, convertDartClosureToJS; |
| 10 import 'dart:_foreign_helper' show JS; | 10 import 'dart:_foreign_helper' show JS; |
| (...skipping 1029 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1040 | 1040 |
| 1041 @DocsEditable | 1041 @DocsEditable |
| 1042 @DomName('WaveShaperNode') | 1042 @DomName('WaveShaperNode') |
| 1043 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#dfn-Wav
eShaperNode | 1043 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#dfn-Wav
eShaperNode |
| 1044 @Experimental | 1044 @Experimental |
| 1045 class WaveShaperNode extends AudioNode native "WaveShaperNode" { | 1045 class WaveShaperNode extends AudioNode native "WaveShaperNode" { |
| 1046 | 1046 |
| 1047 @DomName('WaveShaperNode.curve') | 1047 @DomName('WaveShaperNode.curve') |
| 1048 @DocsEditable | 1048 @DocsEditable |
| 1049 Float32List curve; | 1049 Float32List curve; |
| 1050 |
| 1051 @DomName('WaveShaperNode.oversample') |
| 1052 @DocsEditable |
| 1053 @Experimental // untriaged |
| 1054 String oversample; |
| 1050 } | 1055 } |
| 1051 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1056 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1052 // for details. All rights reserved. Use of this source code is governed by a | 1057 // for details. All rights reserved. Use of this source code is governed by a |
| 1053 // BSD-style license that can be found in the LICENSE file. | 1058 // BSD-style license that can be found in the LICENSE file. |
| 1054 | 1059 |
| 1055 | 1060 |
| 1056 @DocsEditable | 1061 @DocsEditable |
| 1057 @DomName('WaveTable') | 1062 @DomName('WaveTable') |
| 1058 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#WaveTab
le-section | 1063 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#WaveTab
le-section |
| 1059 @Experimental | 1064 @Experimental |
| 1060 class WaveTable native "WaveTable" { | 1065 class WaveTable native "WaveTable" { |
| 1061 } | 1066 } |
| OLD | NEW |