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

Side by Side Diff: client/dom/generated/src/wrapping/_AudioPannerNodeWrappingImplementation.dart

Issue 9663027: Remove generated directories with 100s of files. (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 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 // WARNING: Do not edit - generated code.
6
7 class _AudioPannerNodeWrappingImplementation extends _AudioNodeWrappingImplement ation implements AudioPannerNode {
8 _AudioPannerNodeWrappingImplementation() : super() {}
9
10 static create__AudioPannerNodeWrappingImplementation() native {
11 return new _AudioPannerNodeWrappingImplementation();
12 }
13
14 AudioGain get coneGain() { return _get_coneGain(this); }
15 static AudioGain _get_coneGain(var _this) native;
16
17 num get coneInnerAngle() { return _get_coneInnerAngle(this); }
18 static num _get_coneInnerAngle(var _this) native;
19
20 void set coneInnerAngle(num value) { _set_coneInnerAngle(this, value); }
21 static void _set_coneInnerAngle(var _this, num value) native;
22
23 num get coneOuterAngle() { return _get_coneOuterAngle(this); }
24 static num _get_coneOuterAngle(var _this) native;
25
26 void set coneOuterAngle(num value) { _set_coneOuterAngle(this, value); }
27 static void _set_coneOuterAngle(var _this, num value) native;
28
29 num get coneOuterGain() { return _get_coneOuterGain(this); }
30 static num _get_coneOuterGain(var _this) native;
31
32 void set coneOuterGain(num value) { _set_coneOuterGain(this, value); }
33 static void _set_coneOuterGain(var _this, num value) native;
34
35 AudioGain get distanceGain() { return _get_distanceGain(this); }
36 static AudioGain _get_distanceGain(var _this) native;
37
38 int get distanceModel() { return _get_distanceModel(this); }
39 static int _get_distanceModel(var _this) native;
40
41 void set distanceModel(int value) { _set_distanceModel(this, value); }
42 static void _set_distanceModel(var _this, int value) native;
43
44 num get maxDistance() { return _get_maxDistance(this); }
45 static num _get_maxDistance(var _this) native;
46
47 void set maxDistance(num value) { _set_maxDistance(this, value); }
48 static void _set_maxDistance(var _this, num value) native;
49
50 int get panningModel() { return _get_panningModel(this); }
51 static int _get_panningModel(var _this) native;
52
53 void set panningModel(int value) { _set_panningModel(this, value); }
54 static void _set_panningModel(var _this, int value) native;
55
56 num get refDistance() { return _get_refDistance(this); }
57 static num _get_refDistance(var _this) native;
58
59 void set refDistance(num value) { _set_refDistance(this, value); }
60 static void _set_refDistance(var _this, num value) native;
61
62 num get rolloffFactor() { return _get_rolloffFactor(this); }
63 static num _get_rolloffFactor(var _this) native;
64
65 void set rolloffFactor(num value) { _set_rolloffFactor(this, value); }
66 static void _set_rolloffFactor(var _this, num value) native;
67
68 void setOrientation(num x, num y, num z) {
69 _setOrientation(this, x, y, z);
70 return;
71 }
72 static void _setOrientation(receiver, x, y, z) native;
73
74 void setPosition(num x, num y, num z) {
75 _setPosition(this, x, y, z);
76 return;
77 }
78 static void _setPosition(receiver, x, y, z) native;
79
80 void setVelocity(num x, num y, num z) {
81 _setVelocity(this, x, y, z);
82 return;
83 }
84 static void _setVelocity(receiver, x, y, z) native;
85
86 String get typeName() { return "AudioPannerNode"; }
87 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698