Index: client/html/generated/html/dartium/AudioNode.dart |
diff --git a/client/html/generated/html/dartium/AudioNode.dart b/client/html/generated/html/dartium/AudioNode.dart |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5af747405786afb45e23419264e7e3ced95df9d8 |
--- /dev/null |
+++ b/client/html/generated/html/dartium/AudioNode.dart |
@@ -0,0 +1,20 @@ |
+ |
+class _AudioNodeImpl extends _DOMTypeBase implements AudioNode { |
+ _AudioNodeImpl._wrap(ptr) : super._wrap(ptr); |
+ |
+ AudioContext get context() => _wrap(_ptr.context); |
+ |
+ int get numberOfInputs() => _wrap(_ptr.numberOfInputs); |
+ |
+ int get numberOfOutputs() => _wrap(_ptr.numberOfOutputs); |
+ |
+ void connect(AudioNode destination, int output, int input) { |
+ _ptr.connect(_unwrap(destination), _unwrap(output), _unwrap(input)); |
+ return; |
+ } |
+ |
+ void disconnect(int output) { |
+ _ptr.disconnect(_unwrap(output)); |
+ return; |
+ } |
+} |