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

Unified Diff: client/html/generated/html/dartium/AudioParam.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, 10 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 side-by-side diff with in-line comments
Download patch
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;
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698