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

Side by Side Diff: client/dom/generated/src/frog/AudioParam.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 AudioParamJS implements AudioParam native "*AudioParam" { 2 class AudioParamJs extends DOMTypeJs implements AudioParam native "*AudioParam" {
3 3
4 num get defaultValue() native "return this.defaultValue;"; 4 num get defaultValue() native "return this.defaultValue;";
5 5
6 num get maxValue() native "return this.maxValue;"; 6 num get maxValue() native "return this.maxValue;";
7 7
8 num get minValue() native "return this.minValue;"; 8 num get minValue() native "return this.minValue;";
9 9
10 String get name() native "return this.name;"; 10 String get name() native "return this.name;";
11 11
12 int get units() native "return this.units;"; 12 int get units() native "return this.units;";
13 13
14 num get value() native "return this.value;"; 14 num get value() native "return this.value;";
15 15
16 void set value(num value) native "this.value = value;"; 16 void set value(num value) native "this.value = value;";
17 17
18 void cancelScheduledValues(num startTime) native; 18 void cancelScheduledValues(num startTime) native;
19 19
20 void exponentialRampToValueAtTime(num value, num time) native; 20 void exponentialRampToValueAtTime(num value, num time) native;
21 21
22 void linearRampToValueAtTime(num value, num time) native; 22 void linearRampToValueAtTime(num value, num time) native;
23 23
24 void setTargetValueAtTime(num targetValue, num time, num timeConstant) native; 24 void setTargetValueAtTime(num targetValue, num time, num timeConstant) native;
25 25
26 void setValueAtTime(num value, num time) native; 26 void setValueAtTime(num value, num time) native;
27 27
28 void setValueCurveAtTime(Float32ArrayJS values, num time, num duration) native ; 28 void setValueCurveAtTime(Float32ArrayJs values, num time, num duration) native ;
29
30 var dartObjectLocalStorage;
31
32 String get typeName() native;
33 } 29 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/AudioPannerNode.dart ('k') | client/dom/generated/src/frog/AudioProcessingEvent.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698