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

Side by Side Diff: client/html/generated/html/frog/AudioParam.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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
(Empty)
1
2 class _AudioParamImpl implements AudioParam native "*AudioParam" {
3
4 final num defaultValue;
5
6 final num maxValue;
7
8 final num minValue;
9
10 final String name;
11
12 final int units;
13
14 num value;
15
16 void cancelScheduledValues(num startTime) native;
17
18 void exponentialRampToValueAtTime(num value, num time) native;
19
20 void linearRampToValueAtTime(num value, num time) native;
21
22 void setTargetValueAtTime(num targetValue, num time, num timeConstant) native;
23
24 void setValueAtTime(num value, num time) native;
25
26 void setValueCurveAtTime(_Float32ArrayImpl values, num time, num duration) nat ive;
27 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698