| Index: client/html/generated/html/dartium/AudioParam.dart
|
| diff --git a/client/html/generated/html/dartium/AudioParam.dart b/client/html/generated/html/dartium/AudioParam.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..4febb3078eef44db8a9b7defce422328cdd0f731
|
| --- /dev/null
|
| +++ b/client/html/generated/html/dartium/AudioParam.dart
|
| @@ -0,0 +1,48 @@
|
| +
|
| +class _AudioParamImpl extends _DOMTypeBase implements AudioParam {
|
| + _AudioParamImpl._wrap(ptr) : super._wrap(ptr);
|
| +
|
| + num get defaultValue() => _wrap(_ptr.defaultValue);
|
| +
|
| + num get maxValue() => _wrap(_ptr.maxValue);
|
| +
|
| + num get minValue() => _wrap(_ptr.minValue);
|
| +
|
| + String get name() => _wrap(_ptr.name);
|
| +
|
| + int get units() => _wrap(_ptr.units);
|
| +
|
| + num get value() => _wrap(_ptr.value);
|
| +
|
| + void set value(num value) { _ptr.value = _unwrap(value); }
|
| +
|
| + void cancelScheduledValues(num startTime) {
|
| + _ptr.cancelScheduledValues(_unwrap(startTime));
|
| + return;
|
| + }
|
| +
|
| + void exponentialRampToValueAtTime(num value, num time) {
|
| + _ptr.exponentialRampToValueAtTime(_unwrap(value), _unwrap(time));
|
| + return;
|
| + }
|
| +
|
| + void linearRampToValueAtTime(num value, num time) {
|
| + _ptr.linearRampToValueAtTime(_unwrap(value), _unwrap(time));
|
| + return;
|
| + }
|
| +
|
| + void setTargetValueAtTime(num targetValue, num time, num timeConstant) {
|
| + _ptr.setTargetValueAtTime(_unwrap(targetValue), _unwrap(time), _unwrap(timeConstant));
|
| + return;
|
| + }
|
| +
|
| + void setValueAtTime(num value, num time) {
|
| + _ptr.setValueAtTime(_unwrap(value), _unwrap(time));
|
| + return;
|
| + }
|
| +
|
| + void setValueCurveAtTime(Float32Array values, num time, num duration) {
|
| + _ptr.setValueCurveAtTime(_unwrap(values), _unwrap(time), _unwrap(duration));
|
| + return;
|
| + }
|
| +}
|
|
|