| OLD | NEW |
| (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 _AudioParamWrappingImplementation extends DOMWrapperBase implements AudioP
aram { | |
| 8 _AudioParamWrappingImplementation() : super() {} | |
| 9 | |
| 10 static create__AudioParamWrappingImplementation() native { | |
| 11 return new _AudioParamWrappingImplementation(); | |
| 12 } | |
| 13 | |
| 14 num get defaultValue() { return _get_defaultValue(this); } | |
| 15 static num _get_defaultValue(var _this) native; | |
| 16 | |
| 17 num get maxValue() { return _get_maxValue(this); } | |
| 18 static num _get_maxValue(var _this) native; | |
| 19 | |
| 20 num get minValue() { return _get_minValue(this); } | |
| 21 static num _get_minValue(var _this) native; | |
| 22 | |
| 23 String get name() { return _get_name(this); } | |
| 24 static String _get_name(var _this) native; | |
| 25 | |
| 26 int get units() { return _get_units(this); } | |
| 27 static int _get_units(var _this) native; | |
| 28 | |
| 29 num get value() { return _get_value(this); } | |
| 30 static num _get_value(var _this) native; | |
| 31 | |
| 32 void set value(num value) { _set_value(this, value); } | |
| 33 static void _set_value(var _this, num value) native; | |
| 34 | |
| 35 void cancelScheduledValues(num startTime) { | |
| 36 _cancelScheduledValues(this, startTime); | |
| 37 return; | |
| 38 } | |
| 39 static void _cancelScheduledValues(receiver, startTime) native; | |
| 40 | |
| 41 void exponentialRampToValueAtTime(num value, num time) { | |
| 42 _exponentialRampToValueAtTime(this, value, time); | |
| 43 return; | |
| 44 } | |
| 45 static void _exponentialRampToValueAtTime(receiver, value, time) native; | |
| 46 | |
| 47 void linearRampToValueAtTime(num value, num time) { | |
| 48 _linearRampToValueAtTime(this, value, time); | |
| 49 return; | |
| 50 } | |
| 51 static void _linearRampToValueAtTime(receiver, value, time) native; | |
| 52 | |
| 53 void setTargetValueAtTime(num targetValue, num time, num timeConstant) { | |
| 54 _setTargetValueAtTime(this, targetValue, time, timeConstant); | |
| 55 return; | |
| 56 } | |
| 57 static void _setTargetValueAtTime(receiver, targetValue, time, timeConstant) n
ative; | |
| 58 | |
| 59 void setValueAtTime(num value, num time) { | |
| 60 _setValueAtTime(this, value, time); | |
| 61 return; | |
| 62 } | |
| 63 static void _setValueAtTime(receiver, value, time) native; | |
| 64 | |
| 65 void setValueCurveAtTime(Float32Array values, num time, num duration) { | |
| 66 _setValueCurveAtTime(this, values, time, duration); | |
| 67 return; | |
| 68 } | |
| 69 static void _setValueCurveAtTime(receiver, values, time, duration) native; | |
| 70 | |
| 71 String get typeName() { return "AudioParam"; } | |
| 72 } | |
| OLD | NEW |