Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Side by Side Diff: client/dom/generated/src/interface/AudioContext.dart

Issue 8873008: Added constructor for AudioContext for dartc and frog (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698