| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 { | 7 interface AudioContext factory _AudioContextFactoryProvider { |
| 8 |
| 9 AudioContext(); |
| 8 | 10 |
| 9 num get currentTime(); | 11 num get currentTime(); |
| 10 | 12 |
| 11 AudioDestinationNode get destination(); | 13 AudioDestinationNode get destination(); |
| 12 | 14 |
| 13 AudioListener get listener(); | 15 AudioListener get listener(); |
| 14 | 16 |
| 15 num get sampleRate(); | 17 num get sampleRate(); |
| 16 | 18 |
| 17 RealtimeAnalyserNode createAnalyser(); | 19 RealtimeAnalyserNode createAnalyser(); |
| (...skipping 23 matching lines...) Expand all Loading... |
| 41 LowPass2FilterNode createLowPass2Filter(); | 43 LowPass2FilterNode createLowPass2Filter(); |
| 42 | 44 |
| 43 AudioPannerNode createPanner(); | 45 AudioPannerNode createPanner(); |
| 44 | 46 |
| 45 WaveShaperNode createWaveShaper(); | 47 WaveShaperNode createWaveShaper(); |
| 46 | 48 |
| 47 void decodeAudioData(ArrayBuffer audioData, AudioBufferCallback successCallbac
k, [AudioBufferCallback errorCallback]); | 49 void decodeAudioData(ArrayBuffer audioData, AudioBufferCallback successCallbac
k, [AudioBufferCallback errorCallback]); |
| 48 | 50 |
| 49 void startRendering(); | 51 void startRendering(); |
| 50 } | 52 } |
| OLD | NEW |