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

Side by Side Diff: client/html/generated/html/dartium/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 extends _DOMTypeBase implements AudioParam {
3 _AudioParamImpl._wrap(ptr) : super._wrap(ptr);
4
5 num get defaultValue() => _wrap(_ptr.defaultValue);
6
7 num get maxValue() => _wrap(_ptr.maxValue);
8
9 num get minValue() => _wrap(_ptr.minValue);
10
11 String get name() => _wrap(_ptr.name);
12
13 int get units() => _wrap(_ptr.units);
14
15 num get value() => _wrap(_ptr.value);
16
17 void set value(num value) { _ptr.value = _unwrap(value); }
18
19 void cancelScheduledValues(num startTime) {
20 _ptr.cancelScheduledValues(_unwrap(startTime));
21 return;
22 }
23
24 void exponentialRampToValueAtTime(num value, num time) {
25 _ptr.exponentialRampToValueAtTime(_unwrap(value), _unwrap(time));
26 return;
27 }
28
29 void linearRampToValueAtTime(num value, num time) {
30 _ptr.linearRampToValueAtTime(_unwrap(value), _unwrap(time));
31 return;
32 }
33
34 void setTargetValueAtTime(num targetValue, num time, num timeConstant) {
35 _ptr.setTargetValueAtTime(_unwrap(targetValue), _unwrap(time), _unwrap(timeC onstant));
36 return;
37 }
38
39 void setValueAtTime(num value, num time) {
40 _ptr.setValueAtTime(_unwrap(value), _unwrap(time));
41 return;
42 }
43
44 void setValueCurveAtTime(Float32Array values, num time, num duration) {
45 _ptr.setValueCurveAtTime(_unwrap(values), _unwrap(time), _unwrap(duration));
46 return;
47 }
48 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698