| OLD | NEW |
| 1 /** | 1 /** |
| 2 * High-fidelity audio programming in the browser. | 2 * High-fidelity audio programming in the browser. |
| 3 */ | 3 */ |
| 4 library dart.dom.web_audio; | 4 library dart.dom.web_audio; |
| 5 | 5 |
| 6 import 'dart:async'; | 6 import 'dart:async'; |
| 7 import 'dart:collection'; | 7 import 'dart:collection'; |
| 8 import 'dart:_internal' hide deprecated; | 8 import 'dart:_internal' hide deprecated; |
| 9 import 'dart:html'; | 9 import 'dart:html'; |
| 10 import 'dart:html_common'; | 10 import 'dart:html_common'; |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 class AnalyserNode extends AudioNode { | 94 class AnalyserNode extends AudioNode { |
| 95 // To suppress missing implicit constructor warnings. | 95 // To suppress missing implicit constructor warnings. |
| 96 factory AnalyserNode._() { throw new UnsupportedError("Not supported"); } | 96 factory AnalyserNode._() { throw new UnsupportedError("Not supported"); } |
| 97 | 97 |
| 98 | 98 |
| 99 static AnalyserNode internalCreateAnalyserNode() { | 99 static AnalyserNode internalCreateAnalyserNode() { |
| 100 return new AnalyserNode._internalWrap(); | 100 return new AnalyserNode._internalWrap(); |
| 101 } | 101 } |
| 102 | 102 |
| 103 factory AnalyserNode._internalWrap() { | 103 factory AnalyserNode._internalWrap() { |
| 104 return new AnalyserNode._internal(); | 104 return new AnalyserNode.internal_(); |
| 105 } | 105 } |
| 106 | 106 |
| 107 AnalyserNode._internal() : super._internal(); | 107 AnalyserNode.internal_() : super.internal_(); |
| 108 | 108 |
| 109 | 109 |
| 110 @DomName('AnalyserNode.fftSize') | 110 @DomName('AnalyserNode.fftSize') |
| 111 @DocsEditable() | 111 @DocsEditable() |
| 112 int get fftSize => _blink.BlinkAnalyserNode.instance.fftSize_Getter_(unwrap_js
o(this)); | 112 int get fftSize => _blink.BlinkAnalyserNode.instance.fftSize_Getter_(unwrap_js
o(this)); |
| 113 | 113 |
| 114 @DomName('AnalyserNode.fftSize') | 114 @DomName('AnalyserNode.fftSize') |
| 115 @DocsEditable() | 115 @DocsEditable() |
| 116 void set fftSize(int value) => _blink.BlinkAnalyserNode.instance.fftSize_Sette
r_(unwrap_jso(this), value); | 116 void set fftSize(int value) => _blink.BlinkAnalyserNode.instance.fftSize_Sette
r_(unwrap_jso(this), value); |
| 117 | 117 |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 // To suppress missing implicit constructor warnings. | 176 // To suppress missing implicit constructor warnings. |
| 177 factory AudioBuffer._() { throw new UnsupportedError("Not supported"); } | 177 factory AudioBuffer._() { throw new UnsupportedError("Not supported"); } |
| 178 | 178 |
| 179 static AudioBuffer internalCreateAudioBuffer() { | 179 static AudioBuffer internalCreateAudioBuffer() { |
| 180 return new AudioBuffer._internalWrap(); | 180 return new AudioBuffer._internalWrap(); |
| 181 } | 181 } |
| 182 | 182 |
| 183 JsObject blink_jsObject = null; | 183 JsObject blink_jsObject = null; |
| 184 | 184 |
| 185 factory AudioBuffer._internalWrap() { | 185 factory AudioBuffer._internalWrap() { |
| 186 return new AudioBuffer._internal(); | 186 return new AudioBuffer.internal_(); |
| 187 } | 187 } |
| 188 | 188 |
| 189 AudioBuffer._internal() { } | 189 AudioBuffer.internal_() { } |
| 190 | 190 |
| 191 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 191 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 192 | 192 |
| 193 @DomName('AudioBuffer.duration') | 193 @DomName('AudioBuffer.duration') |
| 194 @DocsEditable() | 194 @DocsEditable() |
| 195 double get duration => _blink.BlinkAudioBuffer.instance.duration_Getter_(unwra
p_jso(this)); | 195 double get duration => _blink.BlinkAudioBuffer.instance.duration_Getter_(unwra
p_jso(this)); |
| 196 | 196 |
| 197 @DomName('AudioBuffer.length') | 197 @DomName('AudioBuffer.length') |
| 198 @DocsEditable() | 198 @DocsEditable() |
| 199 int get length => _blink.BlinkAudioBuffer.instance.length_Getter_(unwrap_jso(t
his)); | 199 int get length => _blink.BlinkAudioBuffer.instance.length_Getter_(unwrap_jso(t
his)); |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 @DocsEditable() | 249 @DocsEditable() |
| 250 @Experimental() // untriaged | 250 @Experimental() // untriaged |
| 251 static const EventStreamProvider<Event> endedEvent = const EventStreamProvider
<Event>('ended'); | 251 static const EventStreamProvider<Event> endedEvent = const EventStreamProvider
<Event>('ended'); |
| 252 | 252 |
| 253 | 253 |
| 254 static AudioBufferSourceNode internalCreateAudioBufferSourceNode() { | 254 static AudioBufferSourceNode internalCreateAudioBufferSourceNode() { |
| 255 return new AudioBufferSourceNode._internalWrap(); | 255 return new AudioBufferSourceNode._internalWrap(); |
| 256 } | 256 } |
| 257 | 257 |
| 258 factory AudioBufferSourceNode._internalWrap() { | 258 factory AudioBufferSourceNode._internalWrap() { |
| 259 return new AudioBufferSourceNode._internal(); | 259 return new AudioBufferSourceNode.internal_(); |
| 260 } | 260 } |
| 261 | 261 |
| 262 AudioBufferSourceNode._internal() : super._internal(); | 262 AudioBufferSourceNode.internal_() : super.internal_(); |
| 263 | 263 |
| 264 | 264 |
| 265 @DomName('AudioBufferSourceNode.buffer') | 265 @DomName('AudioBufferSourceNode.buffer') |
| 266 @DocsEditable() | 266 @DocsEditable() |
| 267 AudioBuffer get buffer => wrap_jso(_blink.BlinkAudioBufferSourceNode.instance.
buffer_Getter_(unwrap_jso(this))); | 267 AudioBuffer get buffer => wrap_jso(_blink.BlinkAudioBufferSourceNode.instance.
buffer_Getter_(unwrap_jso(this))); |
| 268 | 268 |
| 269 @DomName('AudioBufferSourceNode.buffer') | 269 @DomName('AudioBufferSourceNode.buffer') |
| 270 @DocsEditable() | 270 @DocsEditable() |
| 271 void set buffer(AudioBuffer value) => _blink.BlinkAudioBufferSourceNode.instan
ce.buffer_Setter_(unwrap_jso(this), unwrap_jso(value)); | 271 void set buffer(AudioBuffer value) => _blink.BlinkAudioBufferSourceNode.instan
ce.buffer_Setter_(unwrap_jso(this), unwrap_jso(value)); |
| 272 | 272 |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 factory AudioContext() { | 360 factory AudioContext() { |
| 361 return _blink.BlinkAudioContext.instance.constructorCallback_0_(); | 361 return _blink.BlinkAudioContext.instance.constructorCallback_0_(); |
| 362 } | 362 } |
| 363 | 363 |
| 364 | 364 |
| 365 static AudioContext internalCreateAudioContext() { | 365 static AudioContext internalCreateAudioContext() { |
| 366 return new AudioContext._internalWrap(); | 366 return new AudioContext._internalWrap(); |
| 367 } | 367 } |
| 368 | 368 |
| 369 factory AudioContext._internalWrap() { | 369 factory AudioContext._internalWrap() { |
| 370 return new AudioContext._internal(); | 370 return new AudioContext.internal_(); |
| 371 } | 371 } |
| 372 | 372 |
| 373 AudioContext._internal() : super._internal(); | 373 AudioContext.internal_() : super.internal_(); |
| 374 | 374 |
| 375 | 375 |
| 376 /// Checks if this type is supported on the current platform. | 376 /// Checks if this type is supported on the current platform. |
| 377 static bool get supported => true; | 377 static bool get supported => true; |
| 378 | 378 |
| 379 @DomName('AudioContext.currentTime') | 379 @DomName('AudioContext.currentTime') |
| 380 @DocsEditable() | 380 @DocsEditable() |
| 381 double get currentTime => _blink.BlinkAudioContext.instance.currentTime_Getter
_(unwrap_jso(this)); | 381 double get currentTime => _blink.BlinkAudioContext.instance.currentTime_Getter
_(unwrap_jso(this)); |
| 382 | 382 |
| 383 @DomName('AudioContext.destination') | 383 @DomName('AudioContext.destination') |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 525 class AudioDestinationNode extends AudioNode { | 525 class AudioDestinationNode extends AudioNode { |
| 526 // To suppress missing implicit constructor warnings. | 526 // To suppress missing implicit constructor warnings. |
| 527 factory AudioDestinationNode._() { throw new UnsupportedError("Not supported")
; } | 527 factory AudioDestinationNode._() { throw new UnsupportedError("Not supported")
; } |
| 528 | 528 |
| 529 | 529 |
| 530 static AudioDestinationNode internalCreateAudioDestinationNode() { | 530 static AudioDestinationNode internalCreateAudioDestinationNode() { |
| 531 return new AudioDestinationNode._internalWrap(); | 531 return new AudioDestinationNode._internalWrap(); |
| 532 } | 532 } |
| 533 | 533 |
| 534 factory AudioDestinationNode._internalWrap() { | 534 factory AudioDestinationNode._internalWrap() { |
| 535 return new AudioDestinationNode._internal(); | 535 return new AudioDestinationNode.internal_(); |
| 536 } | 536 } |
| 537 | 537 |
| 538 AudioDestinationNode._internal() : super._internal(); | 538 AudioDestinationNode.internal_() : super.internal_(); |
| 539 | 539 |
| 540 | 540 |
| 541 @DomName('AudioDestinationNode.maxChannelCount') | 541 @DomName('AudioDestinationNode.maxChannelCount') |
| 542 @DocsEditable() | 542 @DocsEditable() |
| 543 int get maxChannelCount => _blink.BlinkAudioDestinationNode.instance.maxChanne
lCount_Getter_(unwrap_jso(this)); | 543 int get maxChannelCount => _blink.BlinkAudioDestinationNode.instance.maxChanne
lCount_Getter_(unwrap_jso(this)); |
| 544 | 544 |
| 545 } | 545 } |
| 546 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 546 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 547 // for details. All rights reserved. Use of this source code is governed by a | 547 // for details. All rights reserved. Use of this source code is governed by a |
| 548 // BSD-style license that can be found in the LICENSE file. | 548 // BSD-style license that can be found in the LICENSE file. |
| 549 | 549 |
| 550 // WARNING: Do not edit - generated code. | 550 // WARNING: Do not edit - generated code. |
| 551 | 551 |
| 552 | 552 |
| 553 @DocsEditable() | 553 @DocsEditable() |
| 554 @DomName('AudioListener') | 554 @DomName('AudioListener') |
| 555 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#AudioLi
stener-section | 555 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#AudioLi
stener-section |
| 556 @Experimental() | 556 @Experimental() |
| 557 class AudioListener extends NativeFieldWrapperClass2 { | 557 class AudioListener extends NativeFieldWrapperClass2 { |
| 558 // To suppress missing implicit constructor warnings. | 558 // To suppress missing implicit constructor warnings. |
| 559 factory AudioListener._() { throw new UnsupportedError("Not supported"); } | 559 factory AudioListener._() { throw new UnsupportedError("Not supported"); } |
| 560 | 560 |
| 561 static AudioListener internalCreateAudioListener() { | 561 static AudioListener internalCreateAudioListener() { |
| 562 return new AudioListener._internalWrap(); | 562 return new AudioListener._internalWrap(); |
| 563 } | 563 } |
| 564 | 564 |
| 565 JsObject blink_jsObject = null; | 565 JsObject blink_jsObject = null; |
| 566 | 566 |
| 567 factory AudioListener._internalWrap() { | 567 factory AudioListener._internalWrap() { |
| 568 return new AudioListener._internal(); | 568 return new AudioListener.internal_(); |
| 569 } | 569 } |
| 570 | 570 |
| 571 AudioListener._internal() { } | 571 AudioListener.internal_() { } |
| 572 | 572 |
| 573 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 573 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 574 | 574 |
| 575 @DomName('AudioListener.dopplerFactor') | 575 @DomName('AudioListener.dopplerFactor') |
| 576 @DocsEditable() | 576 @DocsEditable() |
| 577 num get dopplerFactor => _blink.BlinkAudioListener.instance.dopplerFactor_Gett
er_(unwrap_jso(this)); | 577 num get dopplerFactor => _blink.BlinkAudioListener.instance.dopplerFactor_Gett
er_(unwrap_jso(this)); |
| 578 | 578 |
| 579 @DomName('AudioListener.dopplerFactor') | 579 @DomName('AudioListener.dopplerFactor') |
| 580 @DocsEditable() | 580 @DocsEditable() |
| 581 void set dopplerFactor(num value) => _blink.BlinkAudioListener.instance.dopple
rFactor_Setter_(unwrap_jso(this), value); | 581 void set dopplerFactor(num value) => _blink.BlinkAudioListener.instance.dopple
rFactor_Setter_(unwrap_jso(this), value); |
| (...skipping 30 matching lines...) Expand all Loading... |
| 612 class AudioNode extends EventTarget { | 612 class AudioNode extends EventTarget { |
| 613 // To suppress missing implicit constructor warnings. | 613 // To suppress missing implicit constructor warnings. |
| 614 factory AudioNode._() { throw new UnsupportedError("Not supported"); } | 614 factory AudioNode._() { throw new UnsupportedError("Not supported"); } |
| 615 | 615 |
| 616 | 616 |
| 617 static AudioNode internalCreateAudioNode() { | 617 static AudioNode internalCreateAudioNode() { |
| 618 return new AudioNode._internalWrap(); | 618 return new AudioNode._internalWrap(); |
| 619 } | 619 } |
| 620 | 620 |
| 621 factory AudioNode._internalWrap() { | 621 factory AudioNode._internalWrap() { |
| 622 return new AudioNode._internal(); | 622 return new AudioNode.internal_(); |
| 623 } | 623 } |
| 624 | 624 |
| 625 AudioNode._internal() : super._internal(); | 625 AudioNode.internal_() : super.internal_(); |
| 626 | 626 |
| 627 | 627 |
| 628 @DomName('AudioNode.channelCount') | 628 @DomName('AudioNode.channelCount') |
| 629 @DocsEditable() | 629 @DocsEditable() |
| 630 int get channelCount => _blink.BlinkAudioNode.instance.channelCount_Getter_(un
wrap_jso(this)); | 630 int get channelCount => _blink.BlinkAudioNode.instance.channelCount_Getter_(un
wrap_jso(this)); |
| 631 | 631 |
| 632 @DomName('AudioNode.channelCount') | 632 @DomName('AudioNode.channelCount') |
| 633 @DocsEditable() | 633 @DocsEditable() |
| 634 void set channelCount(int value) => _blink.BlinkAudioNode.instance.channelCoun
t_Setter_(unwrap_jso(this), value); | 634 void set channelCount(int value) => _blink.BlinkAudioNode.instance.channelCoun
t_Setter_(unwrap_jso(this), value); |
| 635 | 635 |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 700 // To suppress missing implicit constructor warnings. | 700 // To suppress missing implicit constructor warnings. |
| 701 factory AudioParam._() { throw new UnsupportedError("Not supported"); } | 701 factory AudioParam._() { throw new UnsupportedError("Not supported"); } |
| 702 | 702 |
| 703 static AudioParam internalCreateAudioParam() { | 703 static AudioParam internalCreateAudioParam() { |
| 704 return new AudioParam._internalWrap(); | 704 return new AudioParam._internalWrap(); |
| 705 } | 705 } |
| 706 | 706 |
| 707 JsObject blink_jsObject = null; | 707 JsObject blink_jsObject = null; |
| 708 | 708 |
| 709 factory AudioParam._internalWrap() { | 709 factory AudioParam._internalWrap() { |
| 710 return new AudioParam._internal(); | 710 return new AudioParam.internal_(); |
| 711 } | 711 } |
| 712 | 712 |
| 713 AudioParam._internal() { } | 713 AudioParam.internal_() { } |
| 714 | 714 |
| 715 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 715 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 716 | 716 |
| 717 @DomName('AudioParam.defaultValue') | 717 @DomName('AudioParam.defaultValue') |
| 718 @DocsEditable() | 718 @DocsEditable() |
| 719 double get defaultValue => _blink.BlinkAudioParam.instance.defaultValue_Getter
_(unwrap_jso(this)); | 719 double get defaultValue => _blink.BlinkAudioParam.instance.defaultValue_Getter
_(unwrap_jso(this)); |
| 720 | 720 |
| 721 @DomName('AudioParam.value') | 721 @DomName('AudioParam.value') |
| 722 @DocsEditable() | 722 @DocsEditable() |
| 723 num get value => _blink.BlinkAudioParam.instance.value_Getter_(unwrap_jso(this
)); | 723 num get value => _blink.BlinkAudioParam.instance.value_Getter_(unwrap_jso(this
)); |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 765 class AudioProcessingEvent extends Event { | 765 class AudioProcessingEvent extends Event { |
| 766 // To suppress missing implicit constructor warnings. | 766 // To suppress missing implicit constructor warnings. |
| 767 factory AudioProcessingEvent._() { throw new UnsupportedError("Not supported")
; } | 767 factory AudioProcessingEvent._() { throw new UnsupportedError("Not supported")
; } |
| 768 | 768 |
| 769 | 769 |
| 770 static AudioProcessingEvent internalCreateAudioProcessingEvent() { | 770 static AudioProcessingEvent internalCreateAudioProcessingEvent() { |
| 771 return new AudioProcessingEvent._internalWrap(); | 771 return new AudioProcessingEvent._internalWrap(); |
| 772 } | 772 } |
| 773 | 773 |
| 774 factory AudioProcessingEvent._internalWrap() { | 774 factory AudioProcessingEvent._internalWrap() { |
| 775 return new AudioProcessingEvent._internal(); | 775 return new AudioProcessingEvent.internal_(); |
| 776 } | 776 } |
| 777 | 777 |
| 778 AudioProcessingEvent._internal() : super._internal(); | 778 AudioProcessingEvent.internal_() : super.internal_(); |
| 779 | 779 |
| 780 | 780 |
| 781 @DomName('AudioProcessingEvent.inputBuffer') | 781 @DomName('AudioProcessingEvent.inputBuffer') |
| 782 @DocsEditable() | 782 @DocsEditable() |
| 783 AudioBuffer get inputBuffer => wrap_jso(_blink.BlinkAudioProcessingEvent.insta
nce.inputBuffer_Getter_(unwrap_jso(this))); | 783 AudioBuffer get inputBuffer => wrap_jso(_blink.BlinkAudioProcessingEvent.insta
nce.inputBuffer_Getter_(unwrap_jso(this))); |
| 784 | 784 |
| 785 @DomName('AudioProcessingEvent.outputBuffer') | 785 @DomName('AudioProcessingEvent.outputBuffer') |
| 786 @DocsEditable() | 786 @DocsEditable() |
| 787 AudioBuffer get outputBuffer => wrap_jso(_blink.BlinkAudioProcessingEvent.inst
ance.outputBuffer_Getter_(unwrap_jso(this))); | 787 AudioBuffer get outputBuffer => wrap_jso(_blink.BlinkAudioProcessingEvent.inst
ance.outputBuffer_Getter_(unwrap_jso(this))); |
| 788 | 788 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 806 class AudioSourceNode extends AudioNode { | 806 class AudioSourceNode extends AudioNode { |
| 807 // To suppress missing implicit constructor warnings. | 807 // To suppress missing implicit constructor warnings. |
| 808 factory AudioSourceNode._() { throw new UnsupportedError("Not supported"); } | 808 factory AudioSourceNode._() { throw new UnsupportedError("Not supported"); } |
| 809 | 809 |
| 810 | 810 |
| 811 static AudioSourceNode internalCreateAudioSourceNode() { | 811 static AudioSourceNode internalCreateAudioSourceNode() { |
| 812 return new AudioSourceNode._internalWrap(); | 812 return new AudioSourceNode._internalWrap(); |
| 813 } | 813 } |
| 814 | 814 |
| 815 factory AudioSourceNode._internalWrap() { | 815 factory AudioSourceNode._internalWrap() { |
| 816 return new AudioSourceNode._internal(); | 816 return new AudioSourceNode.internal_(); |
| 817 } | 817 } |
| 818 | 818 |
| 819 AudioSourceNode._internal() : super._internal(); | 819 AudioSourceNode.internal_() : super.internal_(); |
| 820 | 820 |
| 821 | 821 |
| 822 } | 822 } |
| 823 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 823 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 824 // for details. All rights reserved. Use of this source code is governed by a | 824 // for details. All rights reserved. Use of this source code is governed by a |
| 825 // BSD-style license that can be found in the LICENSE file. | 825 // BSD-style license that can be found in the LICENSE file. |
| 826 | 826 |
| 827 // WARNING: Do not edit - generated code. | 827 // WARNING: Do not edit - generated code. |
| 828 | 828 |
| 829 | 829 |
| 830 @DocsEditable() | 830 @DocsEditable() |
| 831 @DomName('BiquadFilterNode') | 831 @DomName('BiquadFilterNode') |
| 832 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#BiquadF
ilterNode-section | 832 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#BiquadF
ilterNode-section |
| 833 @Experimental() | 833 @Experimental() |
| 834 class BiquadFilterNode extends AudioNode { | 834 class BiquadFilterNode extends AudioNode { |
| 835 // To suppress missing implicit constructor warnings. | 835 // To suppress missing implicit constructor warnings. |
| 836 factory BiquadFilterNode._() { throw new UnsupportedError("Not supported"); } | 836 factory BiquadFilterNode._() { throw new UnsupportedError("Not supported"); } |
| 837 | 837 |
| 838 | 838 |
| 839 static BiquadFilterNode internalCreateBiquadFilterNode() { | 839 static BiquadFilterNode internalCreateBiquadFilterNode() { |
| 840 return new BiquadFilterNode._internalWrap(); | 840 return new BiquadFilterNode._internalWrap(); |
| 841 } | 841 } |
| 842 | 842 |
| 843 factory BiquadFilterNode._internalWrap() { | 843 factory BiquadFilterNode._internalWrap() { |
| 844 return new BiquadFilterNode._internal(); | 844 return new BiquadFilterNode.internal_(); |
| 845 } | 845 } |
| 846 | 846 |
| 847 BiquadFilterNode._internal() : super._internal(); | 847 BiquadFilterNode.internal_() : super.internal_(); |
| 848 | 848 |
| 849 | 849 |
| 850 @DomName('BiquadFilterNode.Q') | 850 @DomName('BiquadFilterNode.Q') |
| 851 @DocsEditable() | 851 @DocsEditable() |
| 852 AudioParam get Q => wrap_jso(_blink.BlinkBiquadFilterNode.instance.Q_Getter_(u
nwrap_jso(this))); | 852 AudioParam get Q => wrap_jso(_blink.BlinkBiquadFilterNode.instance.Q_Getter_(u
nwrap_jso(this))); |
| 853 | 853 |
| 854 @DomName('BiquadFilterNode.detune') | 854 @DomName('BiquadFilterNode.detune') |
| 855 @DocsEditable() | 855 @DocsEditable() |
| 856 AudioParam get detune => wrap_jso(_blink.BlinkBiquadFilterNode.instance.detune
_Getter_(unwrap_jso(this))); | 856 AudioParam get detune => wrap_jso(_blink.BlinkBiquadFilterNode.instance.detune
_Getter_(unwrap_jso(this))); |
| 857 | 857 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 890 class ChannelMergerNode extends AudioNode { | 890 class ChannelMergerNode extends AudioNode { |
| 891 // To suppress missing implicit constructor warnings. | 891 // To suppress missing implicit constructor warnings. |
| 892 factory ChannelMergerNode._() { throw new UnsupportedError("Not supported"); } | 892 factory ChannelMergerNode._() { throw new UnsupportedError("Not supported"); } |
| 893 | 893 |
| 894 | 894 |
| 895 static ChannelMergerNode internalCreateChannelMergerNode() { | 895 static ChannelMergerNode internalCreateChannelMergerNode() { |
| 896 return new ChannelMergerNode._internalWrap(); | 896 return new ChannelMergerNode._internalWrap(); |
| 897 } | 897 } |
| 898 | 898 |
| 899 factory ChannelMergerNode._internalWrap() { | 899 factory ChannelMergerNode._internalWrap() { |
| 900 return new ChannelMergerNode._internal(); | 900 return new ChannelMergerNode.internal_(); |
| 901 } | 901 } |
| 902 | 902 |
| 903 ChannelMergerNode._internal() : super._internal(); | 903 ChannelMergerNode.internal_() : super.internal_(); |
| 904 | 904 |
| 905 | 905 |
| 906 } | 906 } |
| 907 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 907 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 908 // for details. All rights reserved. Use of this source code is governed by a | 908 // for details. All rights reserved. Use of this source code is governed by a |
| 909 // BSD-style license that can be found in the LICENSE file. | 909 // BSD-style license that can be found in the LICENSE file. |
| 910 | 910 |
| 911 // WARNING: Do not edit - generated code. | 911 // WARNING: Do not edit - generated code. |
| 912 | 912 |
| 913 | 913 |
| 914 @DocsEditable() | 914 @DocsEditable() |
| 915 @DomName('ChannelSplitterNode') | 915 @DomName('ChannelSplitterNode') |
| 916 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#Channel
SplitterNode-section | 916 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#Channel
SplitterNode-section |
| 917 @Experimental() | 917 @Experimental() |
| 918 class ChannelSplitterNode extends AudioNode { | 918 class ChannelSplitterNode extends AudioNode { |
| 919 // To suppress missing implicit constructor warnings. | 919 // To suppress missing implicit constructor warnings. |
| 920 factory ChannelSplitterNode._() { throw new UnsupportedError("Not supported");
} | 920 factory ChannelSplitterNode._() { throw new UnsupportedError("Not supported");
} |
| 921 | 921 |
| 922 | 922 |
| 923 static ChannelSplitterNode internalCreateChannelSplitterNode() { | 923 static ChannelSplitterNode internalCreateChannelSplitterNode() { |
| 924 return new ChannelSplitterNode._internalWrap(); | 924 return new ChannelSplitterNode._internalWrap(); |
| 925 } | 925 } |
| 926 | 926 |
| 927 factory ChannelSplitterNode._internalWrap() { | 927 factory ChannelSplitterNode._internalWrap() { |
| 928 return new ChannelSplitterNode._internal(); | 928 return new ChannelSplitterNode.internal_(); |
| 929 } | 929 } |
| 930 | 930 |
| 931 ChannelSplitterNode._internal() : super._internal(); | 931 ChannelSplitterNode.internal_() : super.internal_(); |
| 932 | 932 |
| 933 | 933 |
| 934 } | 934 } |
| 935 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 935 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 936 // for details. All rights reserved. Use of this source code is governed by a | 936 // for details. All rights reserved. Use of this source code is governed by a |
| 937 // BSD-style license that can be found in the LICENSE file. | 937 // BSD-style license that can be found in the LICENSE file. |
| 938 | 938 |
| 939 // WARNING: Do not edit - generated code. | 939 // WARNING: Do not edit - generated code. |
| 940 | 940 |
| 941 | 941 |
| 942 @DocsEditable() | 942 @DocsEditable() |
| 943 @DomName('ConvolverNode') | 943 @DomName('ConvolverNode') |
| 944 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#Convolv
erNode | 944 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#Convolv
erNode |
| 945 @Experimental() | 945 @Experimental() |
| 946 class ConvolverNode extends AudioNode { | 946 class ConvolverNode extends AudioNode { |
| 947 // To suppress missing implicit constructor warnings. | 947 // To suppress missing implicit constructor warnings. |
| 948 factory ConvolverNode._() { throw new UnsupportedError("Not supported"); } | 948 factory ConvolverNode._() { throw new UnsupportedError("Not supported"); } |
| 949 | 949 |
| 950 | 950 |
| 951 static ConvolverNode internalCreateConvolverNode() { | 951 static ConvolverNode internalCreateConvolverNode() { |
| 952 return new ConvolverNode._internalWrap(); | 952 return new ConvolverNode._internalWrap(); |
| 953 } | 953 } |
| 954 | 954 |
| 955 factory ConvolverNode._internalWrap() { | 955 factory ConvolverNode._internalWrap() { |
| 956 return new ConvolverNode._internal(); | 956 return new ConvolverNode.internal_(); |
| 957 } | 957 } |
| 958 | 958 |
| 959 ConvolverNode._internal() : super._internal(); | 959 ConvolverNode.internal_() : super.internal_(); |
| 960 | 960 |
| 961 | 961 |
| 962 @DomName('ConvolverNode.buffer') | 962 @DomName('ConvolverNode.buffer') |
| 963 @DocsEditable() | 963 @DocsEditable() |
| 964 AudioBuffer get buffer => wrap_jso(_blink.BlinkConvolverNode.instance.buffer_G
etter_(unwrap_jso(this))); | 964 AudioBuffer get buffer => wrap_jso(_blink.BlinkConvolverNode.instance.buffer_G
etter_(unwrap_jso(this))); |
| 965 | 965 |
| 966 @DomName('ConvolverNode.buffer') | 966 @DomName('ConvolverNode.buffer') |
| 967 @DocsEditable() | 967 @DocsEditable() |
| 968 void set buffer(AudioBuffer value) => _blink.BlinkConvolverNode.instance.buffe
r_Setter_(unwrap_jso(this), unwrap_jso(value)); | 968 void set buffer(AudioBuffer value) => _blink.BlinkConvolverNode.instance.buffe
r_Setter_(unwrap_jso(this), unwrap_jso(value)); |
| 969 | 969 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 990 class DelayNode extends AudioNode { | 990 class DelayNode extends AudioNode { |
| 991 // To suppress missing implicit constructor warnings. | 991 // To suppress missing implicit constructor warnings. |
| 992 factory DelayNode._() { throw new UnsupportedError("Not supported"); } | 992 factory DelayNode._() { throw new UnsupportedError("Not supported"); } |
| 993 | 993 |
| 994 | 994 |
| 995 static DelayNode internalCreateDelayNode() { | 995 static DelayNode internalCreateDelayNode() { |
| 996 return new DelayNode._internalWrap(); | 996 return new DelayNode._internalWrap(); |
| 997 } | 997 } |
| 998 | 998 |
| 999 factory DelayNode._internalWrap() { | 999 factory DelayNode._internalWrap() { |
| 1000 return new DelayNode._internal(); | 1000 return new DelayNode.internal_(); |
| 1001 } | 1001 } |
| 1002 | 1002 |
| 1003 DelayNode._internal() : super._internal(); | 1003 DelayNode.internal_() : super.internal_(); |
| 1004 | 1004 |
| 1005 | 1005 |
| 1006 @DomName('DelayNode.delayTime') | 1006 @DomName('DelayNode.delayTime') |
| 1007 @DocsEditable() | 1007 @DocsEditable() |
| 1008 AudioParam get delayTime => wrap_jso(_blink.BlinkDelayNode.instance.delayTime_
Getter_(unwrap_jso(this))); | 1008 AudioParam get delayTime => wrap_jso(_blink.BlinkDelayNode.instance.delayTime_
Getter_(unwrap_jso(this))); |
| 1009 | 1009 |
| 1010 } | 1010 } |
| 1011 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1011 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1012 // for details. All rights reserved. Use of this source code is governed by a | 1012 // for details. All rights reserved. Use of this source code is governed by a |
| 1013 // BSD-style license that can be found in the LICENSE file. | 1013 // BSD-style license that can be found in the LICENSE file. |
| 1014 | 1014 |
| 1015 // WARNING: Do not edit - generated code. | 1015 // WARNING: Do not edit - generated code. |
| 1016 | 1016 |
| 1017 | 1017 |
| 1018 @DocsEditable() | 1018 @DocsEditable() |
| 1019 @DomName('DynamicsCompressorNode') | 1019 @DomName('DynamicsCompressorNode') |
| 1020 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#Dynamic
sCompressorNode | 1020 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#Dynamic
sCompressorNode |
| 1021 @Experimental() | 1021 @Experimental() |
| 1022 class DynamicsCompressorNode extends AudioNode { | 1022 class DynamicsCompressorNode extends AudioNode { |
| 1023 // To suppress missing implicit constructor warnings. | 1023 // To suppress missing implicit constructor warnings. |
| 1024 factory DynamicsCompressorNode._() { throw new UnsupportedError("Not supported
"); } | 1024 factory DynamicsCompressorNode._() { throw new UnsupportedError("Not supported
"); } |
| 1025 | 1025 |
| 1026 | 1026 |
| 1027 static DynamicsCompressorNode internalCreateDynamicsCompressorNode() { | 1027 static DynamicsCompressorNode internalCreateDynamicsCompressorNode() { |
| 1028 return new DynamicsCompressorNode._internalWrap(); | 1028 return new DynamicsCompressorNode._internalWrap(); |
| 1029 } | 1029 } |
| 1030 | 1030 |
| 1031 factory DynamicsCompressorNode._internalWrap() { | 1031 factory DynamicsCompressorNode._internalWrap() { |
| 1032 return new DynamicsCompressorNode._internal(); | 1032 return new DynamicsCompressorNode.internal_(); |
| 1033 } | 1033 } |
| 1034 | 1034 |
| 1035 DynamicsCompressorNode._internal() : super._internal(); | 1035 DynamicsCompressorNode.internal_() : super.internal_(); |
| 1036 | 1036 |
| 1037 | 1037 |
| 1038 @DomName('DynamicsCompressorNode.attack') | 1038 @DomName('DynamicsCompressorNode.attack') |
| 1039 @DocsEditable() | 1039 @DocsEditable() |
| 1040 AudioParam get attack => wrap_jso(_blink.BlinkDynamicsCompressorNode.instance.
attack_Getter_(unwrap_jso(this))); | 1040 AudioParam get attack => wrap_jso(_blink.BlinkDynamicsCompressorNode.instance.
attack_Getter_(unwrap_jso(this))); |
| 1041 | 1041 |
| 1042 @DomName('DynamicsCompressorNode.knee') | 1042 @DomName('DynamicsCompressorNode.knee') |
| 1043 @DocsEditable() | 1043 @DocsEditable() |
| 1044 AudioParam get knee => wrap_jso(_blink.BlinkDynamicsCompressorNode.instance.kn
ee_Getter_(unwrap_jso(this))); | 1044 AudioParam get knee => wrap_jso(_blink.BlinkDynamicsCompressorNode.instance.kn
ee_Getter_(unwrap_jso(this))); |
| 1045 | 1045 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 1074 class GainNode extends AudioNode { | 1074 class GainNode extends AudioNode { |
| 1075 // To suppress missing implicit constructor warnings. | 1075 // To suppress missing implicit constructor warnings. |
| 1076 factory GainNode._() { throw new UnsupportedError("Not supported"); } | 1076 factory GainNode._() { throw new UnsupportedError("Not supported"); } |
| 1077 | 1077 |
| 1078 | 1078 |
| 1079 static GainNode internalCreateGainNode() { | 1079 static GainNode internalCreateGainNode() { |
| 1080 return new GainNode._internalWrap(); | 1080 return new GainNode._internalWrap(); |
| 1081 } | 1081 } |
| 1082 | 1082 |
| 1083 factory GainNode._internalWrap() { | 1083 factory GainNode._internalWrap() { |
| 1084 return new GainNode._internal(); | 1084 return new GainNode.internal_(); |
| 1085 } | 1085 } |
| 1086 | 1086 |
| 1087 GainNode._internal() : super._internal(); | 1087 GainNode.internal_() : super.internal_(); |
| 1088 | 1088 |
| 1089 | 1089 |
| 1090 @DomName('GainNode.gain') | 1090 @DomName('GainNode.gain') |
| 1091 @DocsEditable() | 1091 @DocsEditable() |
| 1092 AudioParam get gain => wrap_jso(_blink.BlinkGainNode.instance.gain_Getter_(unw
rap_jso(this))); | 1092 AudioParam get gain => wrap_jso(_blink.BlinkGainNode.instance.gain_Getter_(unw
rap_jso(this))); |
| 1093 | 1093 |
| 1094 } | 1094 } |
| 1095 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1095 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1096 // for details. All rights reserved. Use of this source code is governed by a | 1096 // for details. All rights reserved. Use of this source code is governed by a |
| 1097 // BSD-style license that can be found in the LICENSE file. | 1097 // BSD-style license that can be found in the LICENSE file. |
| 1098 | 1098 |
| 1099 // WARNING: Do not edit - generated code. | 1099 // WARNING: Do not edit - generated code. |
| 1100 | 1100 |
| 1101 | 1101 |
| 1102 @DocsEditable() | 1102 @DocsEditable() |
| 1103 @DomName('MediaElementAudioSourceNode') | 1103 @DomName('MediaElementAudioSourceNode') |
| 1104 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#MediaEl
ementAudioSourceNode | 1104 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#MediaEl
ementAudioSourceNode |
| 1105 @Experimental() | 1105 @Experimental() |
| 1106 class MediaElementAudioSourceNode extends AudioSourceNode { | 1106 class MediaElementAudioSourceNode extends AudioSourceNode { |
| 1107 // To suppress missing implicit constructor warnings. | 1107 // To suppress missing implicit constructor warnings. |
| 1108 factory MediaElementAudioSourceNode._() { throw new UnsupportedError("Not supp
orted"); } | 1108 factory MediaElementAudioSourceNode._() { throw new UnsupportedError("Not supp
orted"); } |
| 1109 | 1109 |
| 1110 | 1110 |
| 1111 static MediaElementAudioSourceNode internalCreateMediaElementAudioSourceNode()
{ | 1111 static MediaElementAudioSourceNode internalCreateMediaElementAudioSourceNode()
{ |
| 1112 return new MediaElementAudioSourceNode._internalWrap(); | 1112 return new MediaElementAudioSourceNode._internalWrap(); |
| 1113 } | 1113 } |
| 1114 | 1114 |
| 1115 factory MediaElementAudioSourceNode._internalWrap() { | 1115 factory MediaElementAudioSourceNode._internalWrap() { |
| 1116 return new MediaElementAudioSourceNode._internal(); | 1116 return new MediaElementAudioSourceNode.internal_(); |
| 1117 } | 1117 } |
| 1118 | 1118 |
| 1119 MediaElementAudioSourceNode._internal() : super._internal(); | 1119 MediaElementAudioSourceNode.internal_() : super.internal_(); |
| 1120 | 1120 |
| 1121 | 1121 |
| 1122 @DomName('MediaElementAudioSourceNode.mediaElement') | 1122 @DomName('MediaElementAudioSourceNode.mediaElement') |
| 1123 @DocsEditable() | 1123 @DocsEditable() |
| 1124 @Experimental() // non-standard | 1124 @Experimental() // non-standard |
| 1125 MediaElement get mediaElement => wrap_jso(_blink.BlinkMediaElementAudioSourceN
ode.instance.mediaElement_Getter_(unwrap_jso(this))); | 1125 MediaElement get mediaElement => wrap_jso(_blink.BlinkMediaElementAudioSourceN
ode.instance.mediaElement_Getter_(unwrap_jso(this))); |
| 1126 | 1126 |
| 1127 } | 1127 } |
| 1128 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1128 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1129 // for details. All rights reserved. Use of this source code is governed by a | 1129 // for details. All rights reserved. Use of this source code is governed by a |
| 1130 // BSD-style license that can be found in the LICENSE file. | 1130 // BSD-style license that can be found in the LICENSE file. |
| 1131 | 1131 |
| 1132 // WARNING: Do not edit - generated code. | 1132 // WARNING: Do not edit - generated code. |
| 1133 | 1133 |
| 1134 | 1134 |
| 1135 @DocsEditable() | 1135 @DocsEditable() |
| 1136 @DomName('MediaStreamAudioDestinationNode') | 1136 @DomName('MediaStreamAudioDestinationNode') |
| 1137 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#MediaSt
reamAudioDestinationNode | 1137 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#MediaSt
reamAudioDestinationNode |
| 1138 @Experimental() | 1138 @Experimental() |
| 1139 class MediaStreamAudioDestinationNode extends AudioNode { | 1139 class MediaStreamAudioDestinationNode extends AudioNode { |
| 1140 // To suppress missing implicit constructor warnings. | 1140 // To suppress missing implicit constructor warnings. |
| 1141 factory MediaStreamAudioDestinationNode._() { throw new UnsupportedError("Not
supported"); } | 1141 factory MediaStreamAudioDestinationNode._() { throw new UnsupportedError("Not
supported"); } |
| 1142 | 1142 |
| 1143 | 1143 |
| 1144 static MediaStreamAudioDestinationNode internalCreateMediaStreamAudioDestinati
onNode() { | 1144 static MediaStreamAudioDestinationNode internalCreateMediaStreamAudioDestinati
onNode() { |
| 1145 return new MediaStreamAudioDestinationNode._internalWrap(); | 1145 return new MediaStreamAudioDestinationNode._internalWrap(); |
| 1146 } | 1146 } |
| 1147 | 1147 |
| 1148 factory MediaStreamAudioDestinationNode._internalWrap() { | 1148 factory MediaStreamAudioDestinationNode._internalWrap() { |
| 1149 return new MediaStreamAudioDestinationNode._internal(); | 1149 return new MediaStreamAudioDestinationNode.internal_(); |
| 1150 } | 1150 } |
| 1151 | 1151 |
| 1152 MediaStreamAudioDestinationNode._internal() : super._internal(); | 1152 MediaStreamAudioDestinationNode.internal_() : super.internal_(); |
| 1153 | 1153 |
| 1154 | 1154 |
| 1155 @DomName('MediaStreamAudioDestinationNode.stream') | 1155 @DomName('MediaStreamAudioDestinationNode.stream') |
| 1156 @DocsEditable() | 1156 @DocsEditable() |
| 1157 MediaStream get stream => wrap_jso(_blink.BlinkMediaStreamAudioDestinationNode
.instance.stream_Getter_(unwrap_jso(this))); | 1157 MediaStream get stream => wrap_jso(_blink.BlinkMediaStreamAudioDestinationNode
.instance.stream_Getter_(unwrap_jso(this))); |
| 1158 | 1158 |
| 1159 } | 1159 } |
| 1160 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1160 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1161 // for details. All rights reserved. Use of this source code is governed by a | 1161 // for details. All rights reserved. Use of this source code is governed by a |
| 1162 // BSD-style license that can be found in the LICENSE file. | 1162 // BSD-style license that can be found in the LICENSE file. |
| 1163 | 1163 |
| 1164 // WARNING: Do not edit - generated code. | 1164 // WARNING: Do not edit - generated code. |
| 1165 | 1165 |
| 1166 | 1166 |
| 1167 @DocsEditable() | 1167 @DocsEditable() |
| 1168 @DomName('MediaStreamAudioSourceNode') | 1168 @DomName('MediaStreamAudioSourceNode') |
| 1169 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#MediaSt
reamAudioSourceNode | 1169 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#MediaSt
reamAudioSourceNode |
| 1170 @Experimental() | 1170 @Experimental() |
| 1171 class MediaStreamAudioSourceNode extends AudioSourceNode { | 1171 class MediaStreamAudioSourceNode extends AudioSourceNode { |
| 1172 // To suppress missing implicit constructor warnings. | 1172 // To suppress missing implicit constructor warnings. |
| 1173 factory MediaStreamAudioSourceNode._() { throw new UnsupportedError("Not suppo
rted"); } | 1173 factory MediaStreamAudioSourceNode._() { throw new UnsupportedError("Not suppo
rted"); } |
| 1174 | 1174 |
| 1175 | 1175 |
| 1176 static MediaStreamAudioSourceNode internalCreateMediaStreamAudioSourceNode() { | 1176 static MediaStreamAudioSourceNode internalCreateMediaStreamAudioSourceNode() { |
| 1177 return new MediaStreamAudioSourceNode._internalWrap(); | 1177 return new MediaStreamAudioSourceNode._internalWrap(); |
| 1178 } | 1178 } |
| 1179 | 1179 |
| 1180 factory MediaStreamAudioSourceNode._internalWrap() { | 1180 factory MediaStreamAudioSourceNode._internalWrap() { |
| 1181 return new MediaStreamAudioSourceNode._internal(); | 1181 return new MediaStreamAudioSourceNode.internal_(); |
| 1182 } | 1182 } |
| 1183 | 1183 |
| 1184 MediaStreamAudioSourceNode._internal() : super._internal(); | 1184 MediaStreamAudioSourceNode.internal_() : super.internal_(); |
| 1185 | 1185 |
| 1186 | 1186 |
| 1187 @DomName('MediaStreamAudioSourceNode.mediaStream') | 1187 @DomName('MediaStreamAudioSourceNode.mediaStream') |
| 1188 @DocsEditable() | 1188 @DocsEditable() |
| 1189 MediaStream get mediaStream => wrap_jso(_blink.BlinkMediaStreamAudioSourceNode
.instance.mediaStream_Getter_(unwrap_jso(this))); | 1189 MediaStream get mediaStream => wrap_jso(_blink.BlinkMediaStreamAudioSourceNode
.instance.mediaStream_Getter_(unwrap_jso(this))); |
| 1190 | 1190 |
| 1191 } | 1191 } |
| 1192 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1192 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1193 // for details. All rights reserved. Use of this source code is governed by a | 1193 // for details. All rights reserved. Use of this source code is governed by a |
| 1194 // BSD-style license that can be found in the LICENSE file. | 1194 // BSD-style license that can be found in the LICENSE file. |
| 1195 | 1195 |
| 1196 // WARNING: Do not edit - generated code. | 1196 // WARNING: Do not edit - generated code. |
| 1197 | 1197 |
| 1198 | 1198 |
| 1199 @DocsEditable() | 1199 @DocsEditable() |
| 1200 @DomName('OfflineAudioCompletionEvent') | 1200 @DomName('OfflineAudioCompletionEvent') |
| 1201 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#Offline
AudioCompletionEvent-section | 1201 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#Offline
AudioCompletionEvent-section |
| 1202 @Experimental() | 1202 @Experimental() |
| 1203 class OfflineAudioCompletionEvent extends Event { | 1203 class OfflineAudioCompletionEvent extends Event { |
| 1204 // To suppress missing implicit constructor warnings. | 1204 // To suppress missing implicit constructor warnings. |
| 1205 factory OfflineAudioCompletionEvent._() { throw new UnsupportedError("Not supp
orted"); } | 1205 factory OfflineAudioCompletionEvent._() { throw new UnsupportedError("Not supp
orted"); } |
| 1206 | 1206 |
| 1207 | 1207 |
| 1208 static OfflineAudioCompletionEvent internalCreateOfflineAudioCompletionEvent()
{ | 1208 static OfflineAudioCompletionEvent internalCreateOfflineAudioCompletionEvent()
{ |
| 1209 return new OfflineAudioCompletionEvent._internalWrap(); | 1209 return new OfflineAudioCompletionEvent._internalWrap(); |
| 1210 } | 1210 } |
| 1211 | 1211 |
| 1212 factory OfflineAudioCompletionEvent._internalWrap() { | 1212 factory OfflineAudioCompletionEvent._internalWrap() { |
| 1213 return new OfflineAudioCompletionEvent._internal(); | 1213 return new OfflineAudioCompletionEvent.internal_(); |
| 1214 } | 1214 } |
| 1215 | 1215 |
| 1216 OfflineAudioCompletionEvent._internal() : super._internal(); | 1216 OfflineAudioCompletionEvent.internal_() : super.internal_(); |
| 1217 | 1217 |
| 1218 | 1218 |
| 1219 @DomName('OfflineAudioCompletionEvent.renderedBuffer') | 1219 @DomName('OfflineAudioCompletionEvent.renderedBuffer') |
| 1220 @DocsEditable() | 1220 @DocsEditable() |
| 1221 AudioBuffer get renderedBuffer => wrap_jso(_blink.BlinkOfflineAudioCompletionE
vent.instance.renderedBuffer_Getter_(unwrap_jso(this))); | 1221 AudioBuffer get renderedBuffer => wrap_jso(_blink.BlinkOfflineAudioCompletionE
vent.instance.renderedBuffer_Getter_(unwrap_jso(this))); |
| 1222 | 1222 |
| 1223 } | 1223 } |
| 1224 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1224 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1225 // for details. All rights reserved. Use of this source code is governed by a | 1225 // for details. All rights reserved. Use of this source code is governed by a |
| 1226 // BSD-style license that can be found in the LICENSE file. | 1226 // BSD-style license that can be found in the LICENSE file. |
| (...skipping 14 matching lines...) Expand all Loading... |
| 1241 factory OfflineAudioContext(int numberOfChannels, int numberOfFrames, num samp
leRate) { | 1241 factory OfflineAudioContext(int numberOfChannels, int numberOfFrames, num samp
leRate) { |
| 1242 return _blink.BlinkOfflineAudioContext.instance.constructorCallback_3_(numbe
rOfChannels, numberOfFrames, sampleRate); | 1242 return _blink.BlinkOfflineAudioContext.instance.constructorCallback_3_(numbe
rOfChannels, numberOfFrames, sampleRate); |
| 1243 } | 1243 } |
| 1244 | 1244 |
| 1245 | 1245 |
| 1246 static OfflineAudioContext internalCreateOfflineAudioContext() { | 1246 static OfflineAudioContext internalCreateOfflineAudioContext() { |
| 1247 return new OfflineAudioContext._internalWrap(); | 1247 return new OfflineAudioContext._internalWrap(); |
| 1248 } | 1248 } |
| 1249 | 1249 |
| 1250 factory OfflineAudioContext._internalWrap() { | 1250 factory OfflineAudioContext._internalWrap() { |
| 1251 return new OfflineAudioContext._internal(); | 1251 return new OfflineAudioContext.internal_(); |
| 1252 } | 1252 } |
| 1253 | 1253 |
| 1254 OfflineAudioContext._internal() : super._internal(); | 1254 OfflineAudioContext.internal_() : super.internal_(); |
| 1255 | 1255 |
| 1256 | 1256 |
| 1257 } | 1257 } |
| 1258 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1258 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1259 // for details. All rights reserved. Use of this source code is governed by a | 1259 // for details. All rights reserved. Use of this source code is governed by a |
| 1260 // BSD-style license that can be found in the LICENSE file. | 1260 // BSD-style license that can be found in the LICENSE file. |
| 1261 | 1261 |
| 1262 // WARNING: Do not edit - generated code. | 1262 // WARNING: Do not edit - generated code. |
| 1263 | 1263 |
| 1264 | 1264 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 1280 @DocsEditable() | 1280 @DocsEditable() |
| 1281 @Experimental() // untriaged | 1281 @Experimental() // untriaged |
| 1282 static const EventStreamProvider<Event> endedEvent = const EventStreamProvider
<Event>('ended'); | 1282 static const EventStreamProvider<Event> endedEvent = const EventStreamProvider
<Event>('ended'); |
| 1283 | 1283 |
| 1284 | 1284 |
| 1285 static OscillatorNode internalCreateOscillatorNode() { | 1285 static OscillatorNode internalCreateOscillatorNode() { |
| 1286 return new OscillatorNode._internalWrap(); | 1286 return new OscillatorNode._internalWrap(); |
| 1287 } | 1287 } |
| 1288 | 1288 |
| 1289 factory OscillatorNode._internalWrap() { | 1289 factory OscillatorNode._internalWrap() { |
| 1290 return new OscillatorNode._internal(); | 1290 return new OscillatorNode.internal_(); |
| 1291 } | 1291 } |
| 1292 | 1292 |
| 1293 OscillatorNode._internal() : super._internal(); | 1293 OscillatorNode.internal_() : super.internal_(); |
| 1294 | 1294 |
| 1295 | 1295 |
| 1296 @DomName('OscillatorNode.detune') | 1296 @DomName('OscillatorNode.detune') |
| 1297 @DocsEditable() | 1297 @DocsEditable() |
| 1298 AudioParam get detune => wrap_jso(_blink.BlinkOscillatorNode.instance.detune_G
etter_(unwrap_jso(this))); | 1298 AudioParam get detune => wrap_jso(_blink.BlinkOscillatorNode.instance.detune_G
etter_(unwrap_jso(this))); |
| 1299 | 1299 |
| 1300 @DomName('OscillatorNode.frequency') | 1300 @DomName('OscillatorNode.frequency') |
| 1301 @DocsEditable() | 1301 @DocsEditable() |
| 1302 AudioParam get frequency => wrap_jso(_blink.BlinkOscillatorNode.instance.frequ
ency_Getter_(unwrap_jso(this))); | 1302 AudioParam get frequency => wrap_jso(_blink.BlinkOscillatorNode.instance.frequ
ency_Getter_(unwrap_jso(this))); |
| 1303 | 1303 |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1361 class PannerNode extends AudioNode { | 1361 class PannerNode extends AudioNode { |
| 1362 // To suppress missing implicit constructor warnings. | 1362 // To suppress missing implicit constructor warnings. |
| 1363 factory PannerNode._() { throw new UnsupportedError("Not supported"); } | 1363 factory PannerNode._() { throw new UnsupportedError("Not supported"); } |
| 1364 | 1364 |
| 1365 | 1365 |
| 1366 static PannerNode internalCreatePannerNode() { | 1366 static PannerNode internalCreatePannerNode() { |
| 1367 return new PannerNode._internalWrap(); | 1367 return new PannerNode._internalWrap(); |
| 1368 } | 1368 } |
| 1369 | 1369 |
| 1370 factory PannerNode._internalWrap() { | 1370 factory PannerNode._internalWrap() { |
| 1371 return new PannerNode._internal(); | 1371 return new PannerNode.internal_(); |
| 1372 } | 1372 } |
| 1373 | 1373 |
| 1374 PannerNode._internal() : super._internal(); | 1374 PannerNode.internal_() : super.internal_(); |
| 1375 | 1375 |
| 1376 | 1376 |
| 1377 @DomName('PannerNode.coneInnerAngle') | 1377 @DomName('PannerNode.coneInnerAngle') |
| 1378 @DocsEditable() | 1378 @DocsEditable() |
| 1379 num get coneInnerAngle => _blink.BlinkPannerNode.instance.coneInnerAngle_Gette
r_(unwrap_jso(this)); | 1379 num get coneInnerAngle => _blink.BlinkPannerNode.instance.coneInnerAngle_Gette
r_(unwrap_jso(this)); |
| 1380 | 1380 |
| 1381 @DomName('PannerNode.coneInnerAngle') | 1381 @DomName('PannerNode.coneInnerAngle') |
| 1382 @DocsEditable() | 1382 @DocsEditable() |
| 1383 void set coneInnerAngle(num value) => _blink.BlinkPannerNode.instance.coneInne
rAngle_Setter_(unwrap_jso(this), value); | 1383 void set coneInnerAngle(num value) => _blink.BlinkPannerNode.instance.coneInne
rAngle_Setter_(unwrap_jso(this), value); |
| 1384 | 1384 |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1465 // To suppress missing implicit constructor warnings. | 1465 // To suppress missing implicit constructor warnings. |
| 1466 factory PeriodicWave._() { throw new UnsupportedError("Not supported"); } | 1466 factory PeriodicWave._() { throw new UnsupportedError("Not supported"); } |
| 1467 | 1467 |
| 1468 static PeriodicWave internalCreatePeriodicWave() { | 1468 static PeriodicWave internalCreatePeriodicWave() { |
| 1469 return new PeriodicWave._internalWrap(); | 1469 return new PeriodicWave._internalWrap(); |
| 1470 } | 1470 } |
| 1471 | 1471 |
| 1472 JsObject blink_jsObject = null; | 1472 JsObject blink_jsObject = null; |
| 1473 | 1473 |
| 1474 factory PeriodicWave._internalWrap() { | 1474 factory PeriodicWave._internalWrap() { |
| 1475 return new PeriodicWave._internal(); | 1475 return new PeriodicWave.internal_(); |
| 1476 } | 1476 } |
| 1477 | 1477 |
| 1478 PeriodicWave._internal() { } | 1478 PeriodicWave.internal_() { } |
| 1479 | 1479 |
| 1480 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1480 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
| 1481 | 1481 |
| 1482 } | 1482 } |
| 1483 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1483 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1484 // for details. All rights reserved. Use of this source code is governed by a | 1484 // for details. All rights reserved. Use of this source code is governed by a |
| 1485 // BSD-style license that can be found in the LICENSE file. | 1485 // BSD-style license that can be found in the LICENSE file. |
| 1486 | 1486 |
| 1487 // WARNING: Do not edit - generated code. | 1487 // WARNING: Do not edit - generated code. |
| 1488 | 1488 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 1505 @DocsEditable() | 1505 @DocsEditable() |
| 1506 @Experimental() // untriaged | 1506 @Experimental() // untriaged |
| 1507 static const EventStreamProvider<AudioProcessingEvent> audioProcessEvent = con
st EventStreamProvider<AudioProcessingEvent>('audioprocess'); | 1507 static const EventStreamProvider<AudioProcessingEvent> audioProcessEvent = con
st EventStreamProvider<AudioProcessingEvent>('audioprocess'); |
| 1508 | 1508 |
| 1509 | 1509 |
| 1510 static ScriptProcessorNode internalCreateScriptProcessorNode() { | 1510 static ScriptProcessorNode internalCreateScriptProcessorNode() { |
| 1511 return new ScriptProcessorNode._internalWrap(); | 1511 return new ScriptProcessorNode._internalWrap(); |
| 1512 } | 1512 } |
| 1513 | 1513 |
| 1514 factory ScriptProcessorNode._internalWrap() { | 1514 factory ScriptProcessorNode._internalWrap() { |
| 1515 return new ScriptProcessorNode._internal(); | 1515 return new ScriptProcessorNode.internal_(); |
| 1516 } | 1516 } |
| 1517 | 1517 |
| 1518 ScriptProcessorNode._internal() : super._internal(); | 1518 ScriptProcessorNode.internal_() : super.internal_(); |
| 1519 | 1519 |
| 1520 | 1520 |
| 1521 @DomName('ScriptProcessorNode.bufferSize') | 1521 @DomName('ScriptProcessorNode.bufferSize') |
| 1522 @DocsEditable() | 1522 @DocsEditable() |
| 1523 int get bufferSize => _blink.BlinkScriptProcessorNode.instance.bufferSize_Gett
er_(unwrap_jso(this)); | 1523 int get bufferSize => _blink.BlinkScriptProcessorNode.instance.bufferSize_Gett
er_(unwrap_jso(this)); |
| 1524 | 1524 |
| 1525 @DomName('ScriptProcessorNode.setEventListener') | 1525 @DomName('ScriptProcessorNode.setEventListener') |
| 1526 @DocsEditable() | 1526 @DocsEditable() |
| 1527 @Experimental() // untriaged | 1527 @Experimental() // untriaged |
| 1528 void setEventListener(EventListener eventListener) => _blink.BlinkScriptProces
sorNode.instance.setEventListener_Callback_1_(unwrap_jso(this), unwrap_jso(event
Listener)); | 1528 void setEventListener(EventListener eventListener) => _blink.BlinkScriptProces
sorNode.instance.setEventListener_Callback_1_(unwrap_jso(this), unwrap_jso(event
Listener)); |
| (...skipping 26 matching lines...) Expand all Loading... |
| 1555 class WaveShaperNode extends AudioNode { | 1555 class WaveShaperNode extends AudioNode { |
| 1556 // To suppress missing implicit constructor warnings. | 1556 // To suppress missing implicit constructor warnings. |
| 1557 factory WaveShaperNode._() { throw new UnsupportedError("Not supported"); } | 1557 factory WaveShaperNode._() { throw new UnsupportedError("Not supported"); } |
| 1558 | 1558 |
| 1559 | 1559 |
| 1560 static WaveShaperNode internalCreateWaveShaperNode() { | 1560 static WaveShaperNode internalCreateWaveShaperNode() { |
| 1561 return new WaveShaperNode._internalWrap(); | 1561 return new WaveShaperNode._internalWrap(); |
| 1562 } | 1562 } |
| 1563 | 1563 |
| 1564 factory WaveShaperNode._internalWrap() { | 1564 factory WaveShaperNode._internalWrap() { |
| 1565 return new WaveShaperNode._internal(); | 1565 return new WaveShaperNode.internal_(); |
| 1566 } | 1566 } |
| 1567 | 1567 |
| 1568 WaveShaperNode._internal() : super._internal(); | 1568 WaveShaperNode.internal_() : super.internal_(); |
| 1569 | 1569 |
| 1570 | 1570 |
| 1571 @DomName('WaveShaperNode.curve') | 1571 @DomName('WaveShaperNode.curve') |
| 1572 @DocsEditable() | 1572 @DocsEditable() |
| 1573 Float32List get curve => wrap_jso(_blink.BlinkWaveShaperNode.instance.curve_Ge
tter_(unwrap_jso(this))); | 1573 Float32List get curve => wrap_jso(_blink.BlinkWaveShaperNode.instance.curve_Ge
tter_(unwrap_jso(this))); |
| 1574 | 1574 |
| 1575 @DomName('WaveShaperNode.curve') | 1575 @DomName('WaveShaperNode.curve') |
| 1576 @DocsEditable() | 1576 @DocsEditable() |
| 1577 void set curve(Float32List value) => _blink.BlinkWaveShaperNode.instance.curve
_Setter_(unwrap_jso(this), unwrap_jso(value)); | 1577 void set curve(Float32List value) => _blink.BlinkWaveShaperNode.instance.curve
_Setter_(unwrap_jso(this), unwrap_jso(value)); |
| 1578 | 1578 |
| 1579 @DomName('WaveShaperNode.oversample') | 1579 @DomName('WaveShaperNode.oversample') |
| 1580 @DocsEditable() | 1580 @DocsEditable() |
| 1581 String get oversample => _blink.BlinkWaveShaperNode.instance.oversample_Getter
_(unwrap_jso(this)); | 1581 String get oversample => _blink.BlinkWaveShaperNode.instance.oversample_Getter
_(unwrap_jso(this)); |
| 1582 | 1582 |
| 1583 @DomName('WaveShaperNode.oversample') | 1583 @DomName('WaveShaperNode.oversample') |
| 1584 @DocsEditable() | 1584 @DocsEditable() |
| 1585 void set oversample(String value) => _blink.BlinkWaveShaperNode.instance.overs
ample_Setter_(unwrap_jso(this), value); | 1585 void set oversample(String value) => _blink.BlinkWaveShaperNode.instance.overs
ample_Setter_(unwrap_jso(this), value); |
| 1586 | 1586 |
| 1587 } | 1587 } |
| OLD | NEW |