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

Side by Side Diff: client/html/generated/html/frog/AudioPannerNode.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 _AudioPannerNodeImpl extends _AudioNodeImpl implements AudioPannerNode nat ive "*AudioPannerNode" {
3
4 static final int EQUALPOWER = 0;
5
6 static final int EXPONENTIAL_DISTANCE = 2;
7
8 static final int HRTF = 1;
9
10 static final int INVERSE_DISTANCE = 1;
11
12 static final int LINEAR_DISTANCE = 0;
13
14 static final int SOUNDFIELD = 2;
15
16 final _AudioGainImpl coneGain;
17
18 num coneInnerAngle;
19
20 num coneOuterAngle;
21
22 num coneOuterGain;
23
24 final _AudioGainImpl distanceGain;
25
26 int distanceModel;
27
28 num maxDistance;
29
30 int panningModel;
31
32 num refDistance;
33
34 num rolloffFactor;
35
36 void setOrientation(num x, num y, num z) native;
37
38 void setPosition(num x, num y, num z) native;
39
40 void setVelocity(num x, num y, num z) native;
41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698