| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
| 6 | 6 |
| 7 interface AudioContext default _AudioContextFactoryProvider { | 7 interface AudioContext default _AudioContextFactoryProvider { |
| 8 | 8 |
| 9 AudioContext(); | 9 AudioContext(); |
| 10 | 10 |
| 11 final num currentTime; | 11 final num currentTime; |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 MediaElementAudioSourceNode createMediaElementSource(HTMLMediaElement mediaEle
ment); | 47 MediaElementAudioSourceNode createMediaElementSource(HTMLMediaElement mediaEle
ment); |
| 48 | 48 |
| 49 AudioPannerNode createPanner(); | 49 AudioPannerNode createPanner(); |
| 50 | 50 |
| 51 WaveShaperNode createWaveShaper(); | 51 WaveShaperNode createWaveShaper(); |
| 52 | 52 |
| 53 void decodeAudioData(ArrayBuffer audioData, AudioBufferCallback successCallbac
k, [AudioBufferCallback errorCallback]); | 53 void decodeAudioData(ArrayBuffer audioData, AudioBufferCallback successCallbac
k, [AudioBufferCallback errorCallback]); |
| 54 | 54 |
| 55 void startRendering(); | 55 void startRendering(); |
| 56 } | 56 } |
| OLD | NEW |