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

Side by Side Diff: client/dom/generated/src/frog/RealtimeAnalyserNode.dart

Issue 9271031: Make DOMType the root of DOM implementation types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: x Created 8 years, 11 months 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 RealtimeAnalyserNodeJS extends AudioNodeJS implements RealtimeAnalyserNode native "*RealtimeAnalyserNode" { 2 class RealtimeAnalyserNodeJs extends AudioNodeJs implements RealtimeAnalyserNode native "*RealtimeAnalyserNode" {
3 3
4 int get fftSize() native "return this.fftSize;"; 4 int get fftSize() native "return this.fftSize;";
5 5
6 void set fftSize(int value) native "this.fftSize = value;"; 6 void set fftSize(int value) native "this.fftSize = value;";
7 7
8 int get frequencyBinCount() native "return this.frequencyBinCount;"; 8 int get frequencyBinCount() native "return this.frequencyBinCount;";
9 9
10 num get maxDecibels() native "return this.maxDecibels;"; 10 num get maxDecibels() native "return this.maxDecibels;";
11 11
12 void set maxDecibels(num value) native "this.maxDecibels = value;"; 12 void set maxDecibels(num value) native "this.maxDecibels = value;";
13 13
14 num get minDecibels() native "return this.minDecibels;"; 14 num get minDecibels() native "return this.minDecibels;";
15 15
16 void set minDecibels(num value) native "this.minDecibels = value;"; 16 void set minDecibels(num value) native "this.minDecibels = value;";
17 17
18 num get smoothingTimeConstant() native "return this.smoothingTimeConstant;"; 18 num get smoothingTimeConstant() native "return this.smoothingTimeConstant;";
19 19
20 void set smoothingTimeConstant(num value) native "this.smoothingTimeConstant = value;"; 20 void set smoothingTimeConstant(num value) native "this.smoothingTimeConstant = value;";
21 21
22 void getByteFrequencyData(Uint8ArrayJS array) native; 22 void getByteFrequencyData(Uint8ArrayJs array) native;
23 23
24 void getByteTimeDomainData(Uint8ArrayJS array) native; 24 void getByteTimeDomainData(Uint8ArrayJs array) native;
25 25
26 void getFloatFrequencyData(Float32ArrayJS array) native; 26 void getFloatFrequencyData(Float32ArrayJs array) native;
27 } 27 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/RangeException.dart ('k') | client/dom/generated/src/frog/Rect.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698