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

Unified Diff: client/dom/generated/src/wrapping/_AudioListenerWrappingImplementation.dart

Issue 8785014: Turn on webaudio for JS backends. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years 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 side-by-side diff with in-line comments
Download patch
Index: client/dom/generated/src/wrapping/_AudioListenerWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_AudioListenerWrappingImplementation.dart b/client/dom/generated/src/wrapping/_AudioListenerWrappingImplementation.dart
new file mode 100644
index 0000000000000000000000000000000000000000..9f47fea2fb319117b13f372c9fb9e8572110a73f
--- /dev/null
+++ b/client/dom/generated/src/wrapping/_AudioListenerWrappingImplementation.dart
@@ -0,0 +1,45 @@
+// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+// WARNING: Do not edit - generated code.
+
+class _AudioListenerWrappingImplementation extends DOMWrapperBase implements AudioListener {
+ _AudioListenerWrappingImplementation() : super() {}
+
+ static create__AudioListenerWrappingImplementation() native {
+ return new _AudioListenerWrappingImplementation();
+ }
+
+ num get dopplerFactor() { return _get_dopplerFactor(this); }
+ static num _get_dopplerFactor(var _this) native;
+
+ void set dopplerFactor(num value) { _set_dopplerFactor(this, value); }
+ static void _set_dopplerFactor(var _this, num value) native;
+
+ num get speedOfSound() { return _get_speedOfSound(this); }
+ static num _get_speedOfSound(var _this) native;
+
+ void set speedOfSound(num value) { _set_speedOfSound(this, value); }
+ static void _set_speedOfSound(var _this, num value) native;
+
+ void setOrientation(num x, num y, num z, num xUp, num yUp, num zUp) {
+ _setOrientation(this, x, y, z, xUp, yUp, zUp);
+ return;
+ }
+ static void _setOrientation(receiver, x, y, z, xUp, yUp, zUp) native;
+
+ void setPosition(num x, num y, num z) {
+ _setPosition(this, x, y, z);
+ return;
+ }
+ static void _setPosition(receiver, x, y, z) native;
+
+ void setVelocity(num x, num y, num z) {
+ _setVelocity(this, x, y, z);
+ return;
+ }
+ static void _setVelocity(receiver, x, y, z) native;
+
+ String get typeName() { return "AudioListener"; }
+}

Powered by Google App Engine
This is Rietveld 408576698