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

Side by Side Diff: client/dom/generated/src/frog/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 1
2 class AudioContext native "*AudioContext" { 2 class AudioContext native "*AudioContext" {
3 AudioContext() native;
sra1 2011/12/08 06:19:16 It is slightly strange to have a plain constructor
Jennifer Messerly 2011/12/08 06:31:21 If "webkitAudioContext" is the constructor, why no
4
3 5
4 num currentTime; 6 num currentTime;
5 7
6 AudioDestinationNode destination; 8 AudioDestinationNode destination;
7 9
8 AudioListener listener; 10 AudioListener listener;
9 11
10 num sampleRate; 12 num sampleRate;
11 13
12 RealtimeAnalyserNode createAnalyser() native; 14 RealtimeAnalyserNode createAnalyser() native;
(...skipping 27 matching lines...) Expand all
40 WaveShaperNode createWaveShaper() native; 42 WaveShaperNode createWaveShaper() native;
41 43
42 void decodeAudioData(ArrayBuffer audioData, AudioBufferCallback successCallbac k, [AudioBufferCallback errorCallback = null]) native; 44 void decodeAudioData(ArrayBuffer audioData, AudioBufferCallback successCallbac k, [AudioBufferCallback errorCallback = null]) native;
43 45
44 void startRendering() native; 46 void startRendering() native;
45 47
46 var dartObjectLocalStorage; 48 var dartObjectLocalStorage;
47 49
48 String get typeName() native; 50 String get typeName() native;
49 } 51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698