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

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

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment 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 RealtimeAnalyserNode extends AudioNode native "*RealtimeAnalyserNode" { 2 class RealtimeAnalyserNode extends AudioNode native "*RealtimeAnalyserNode" {
3 3
4 int fftSize; 4 int get fftSize() native "return this.fftSize;";
5 5
6 int frequencyBinCount; 6 void set fftSize(int value) native "this.fftSize = value;";
7 7
8 num maxDecibels; 8 int get frequencyBinCount() native "return this.frequencyBinCount;";
9 9
10 num minDecibels; 10 num get maxDecibels() native "return this.maxDecibels;";
11 11
12 num smoothingTimeConstant; 12 void set maxDecibels(num value) native "this.maxDecibels = value;";
13
14 num get minDecibels() native "return this.minDecibels;";
15
16 void set minDecibels(num value) native "this.minDecibels = value;";
17
18 num get smoothingTimeConstant() native "return this.smoothingTimeConstant;";
19
20 void set smoothingTimeConstant(num value) native "this.smoothingTimeConstant = value;";
13 21
14 void getByteFrequencyData(Uint8Array array) native; 22 void getByteFrequencyData(Uint8Array array) native;
15 23
16 void getByteTimeDomainData(Uint8Array array) native; 24 void getByteTimeDomainData(Uint8Array array) native;
17 25
18 void getFloatFrequencyData(Float32Array array) native; 26 void getFloatFrequencyData(Float32Array array) native;
19 } 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