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'; | 8 import 'dart:_internal'; |
9 import 'dart:html'; | 9 import 'dart:html'; |
10 import 'dart:html_common'; | 10 import 'dart:html_common'; |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 | 101 |
102 @Deprecated("Internal Use Only") | 102 @Deprecated("Internal Use Only") |
103 static AnalyserNode internalCreateAnalyserNode() { | 103 static AnalyserNode internalCreateAnalyserNode() { |
104 return new AnalyserNode._internalWrap(); | 104 return new AnalyserNode._internalWrap(); |
105 } | 105 } |
106 | 106 |
107 factory AnalyserNode._internalWrap() { | 107 factory AnalyserNode._internalWrap() { |
108 return new AnalyserNode.internal_(); | 108 return new AnalyserNode.internal_(); |
109 } | 109 } |
110 | 110 |
| 111 @Deprecated("Internal Use Only") |
111 AnalyserNode.internal_() : super.internal_(); | 112 AnalyserNode.internal_() : super.internal_(); |
112 | 113 |
113 | 114 |
114 @DomName('AnalyserNode.fftSize') | 115 @DomName('AnalyserNode.fftSize') |
115 @DocsEditable() | 116 @DocsEditable() |
116 int get fftSize => _blink.BlinkAnalyserNode.instance.fftSize_Getter_(unwrap_js
o(this)); | 117 int get fftSize => _blink.BlinkAnalyserNode.instance.fftSize_Getter_(unwrap_js
o(this)); |
117 | 118 |
118 @DomName('AnalyserNode.fftSize') | 119 @DomName('AnalyserNode.fftSize') |
119 @DocsEditable() | 120 @DocsEditable() |
120 set fftSize(int value) => _blink.BlinkAnalyserNode.instance.fftSize_Setter_(un
wrap_jso(this), value); | 121 set fftSize(int value) => _blink.BlinkAnalyserNode.instance.fftSize_Setter_(un
wrap_jso(this), value); |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 | 183 |
183 @Deprecated("Internal Use Only") | 184 @Deprecated("Internal Use Only") |
184 static AudioBuffer internalCreateAudioBuffer() { | 185 static AudioBuffer internalCreateAudioBuffer() { |
185 return new AudioBuffer._internalWrap(); | 186 return new AudioBuffer._internalWrap(); |
186 } | 187 } |
187 | 188 |
188 factory AudioBuffer._internalWrap() { | 189 factory AudioBuffer._internalWrap() { |
189 return new AudioBuffer.internal_(); | 190 return new AudioBuffer.internal_(); |
190 } | 191 } |
191 | 192 |
| 193 @Deprecated("Internal Use Only") |
192 AudioBuffer.internal_() { } | 194 AudioBuffer.internal_() { } |
193 | 195 |
194 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 196 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
195 int get hashCode => unwrap_jso(this).hashCode; | 197 int get hashCode => unwrap_jso(this).hashCode; |
196 | 198 |
197 @DomName('AudioBuffer.duration') | 199 @DomName('AudioBuffer.duration') |
198 @DocsEditable() | 200 @DocsEditable() |
199 num get duration => _blink.BlinkAudioBuffer.instance.duration_Getter_(unwrap_j
so(this)); | 201 num get duration => _blink.BlinkAudioBuffer.instance.duration_Getter_(unwrap_j
so(this)); |
200 | 202 |
201 @DomName('AudioBuffer.length') | 203 @DomName('AudioBuffer.length') |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 | 259 |
258 @Deprecated("Internal Use Only") | 260 @Deprecated("Internal Use Only") |
259 static AudioBufferSourceNode internalCreateAudioBufferSourceNode() { | 261 static AudioBufferSourceNode internalCreateAudioBufferSourceNode() { |
260 return new AudioBufferSourceNode._internalWrap(); | 262 return new AudioBufferSourceNode._internalWrap(); |
261 } | 263 } |
262 | 264 |
263 factory AudioBufferSourceNode._internalWrap() { | 265 factory AudioBufferSourceNode._internalWrap() { |
264 return new AudioBufferSourceNode.internal_(); | 266 return new AudioBufferSourceNode.internal_(); |
265 } | 267 } |
266 | 268 |
| 269 @Deprecated("Internal Use Only") |
267 AudioBufferSourceNode.internal_() : super.internal_(); | 270 AudioBufferSourceNode.internal_() : super.internal_(); |
268 | 271 |
269 | 272 |
270 @DomName('AudioBufferSourceNode.buffer') | 273 @DomName('AudioBufferSourceNode.buffer') |
271 @DocsEditable() | 274 @DocsEditable() |
272 AudioBuffer get buffer => wrap_jso(_blink.BlinkAudioBufferSourceNode.instance.
buffer_Getter_(unwrap_jso(this))); | 275 AudioBuffer get buffer => wrap_jso(_blink.BlinkAudioBufferSourceNode.instance.
buffer_Getter_(unwrap_jso(this))); |
273 | 276 |
274 @DomName('AudioBufferSourceNode.buffer') | 277 @DomName('AudioBufferSourceNode.buffer') |
275 @DocsEditable() | 278 @DocsEditable() |
276 set buffer(AudioBuffer value) => _blink.BlinkAudioBufferSourceNode.instance.bu
ffer_Setter_(unwrap_jso(this), unwrap_jso(value)); | 279 set buffer(AudioBuffer value) => _blink.BlinkAudioBufferSourceNode.instance.bu
ffer_Setter_(unwrap_jso(this), unwrap_jso(value)); |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
369 | 372 |
370 @Deprecated("Internal Use Only") | 373 @Deprecated("Internal Use Only") |
371 static AudioContext internalCreateAudioContext() { | 374 static AudioContext internalCreateAudioContext() { |
372 return new AudioContext._internalWrap(); | 375 return new AudioContext._internalWrap(); |
373 } | 376 } |
374 | 377 |
375 factory AudioContext._internalWrap() { | 378 factory AudioContext._internalWrap() { |
376 return new AudioContext.internal_(); | 379 return new AudioContext.internal_(); |
377 } | 380 } |
378 | 381 |
| 382 @Deprecated("Internal Use Only") |
379 AudioContext.internal_() : super.internal_(); | 383 AudioContext.internal_() : super.internal_(); |
380 | 384 |
381 | 385 |
382 /// Checks if this type is supported on the current platform. | 386 /// Checks if this type is supported on the current platform. |
383 static bool get supported => true; | 387 static bool get supported => true; |
384 | 388 |
385 @DomName('AudioContext.currentTime') | 389 @DomName('AudioContext.currentTime') |
386 @DocsEditable() | 390 @DocsEditable() |
387 num get currentTime => _blink.BlinkAudioContext.instance.currentTime_Getter_(u
nwrap_jso(this)); | 391 num get currentTime => _blink.BlinkAudioContext.instance.currentTime_Getter_(u
nwrap_jso(this)); |
388 | 392 |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
535 | 539 |
536 @Deprecated("Internal Use Only") | 540 @Deprecated("Internal Use Only") |
537 static AudioDestinationNode internalCreateAudioDestinationNode() { | 541 static AudioDestinationNode internalCreateAudioDestinationNode() { |
538 return new AudioDestinationNode._internalWrap(); | 542 return new AudioDestinationNode._internalWrap(); |
539 } | 543 } |
540 | 544 |
541 factory AudioDestinationNode._internalWrap() { | 545 factory AudioDestinationNode._internalWrap() { |
542 return new AudioDestinationNode.internal_(); | 546 return new AudioDestinationNode.internal_(); |
543 } | 547 } |
544 | 548 |
| 549 @Deprecated("Internal Use Only") |
545 AudioDestinationNode.internal_() : super.internal_(); | 550 AudioDestinationNode.internal_() : super.internal_(); |
546 | 551 |
547 | 552 |
548 @DomName('AudioDestinationNode.maxChannelCount') | 553 @DomName('AudioDestinationNode.maxChannelCount') |
549 @DocsEditable() | 554 @DocsEditable() |
550 int get maxChannelCount => _blink.BlinkAudioDestinationNode.instance.maxChanne
lCount_Getter_(unwrap_jso(this)); | 555 int get maxChannelCount => _blink.BlinkAudioDestinationNode.instance.maxChanne
lCount_Getter_(unwrap_jso(this)); |
551 | 556 |
552 } | 557 } |
553 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 558 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
554 // for details. All rights reserved. Use of this source code is governed by a | 559 // for details. All rights reserved. Use of this source code is governed by a |
(...skipping 12 matching lines...) Expand all Loading... |
567 | 572 |
568 @Deprecated("Internal Use Only") | 573 @Deprecated("Internal Use Only") |
569 static AudioListener internalCreateAudioListener() { | 574 static AudioListener internalCreateAudioListener() { |
570 return new AudioListener._internalWrap(); | 575 return new AudioListener._internalWrap(); |
571 } | 576 } |
572 | 577 |
573 factory AudioListener._internalWrap() { | 578 factory AudioListener._internalWrap() { |
574 return new AudioListener.internal_(); | 579 return new AudioListener.internal_(); |
575 } | 580 } |
576 | 581 |
| 582 @Deprecated("Internal Use Only") |
577 AudioListener.internal_() { } | 583 AudioListener.internal_() { } |
578 | 584 |
579 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 585 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
580 int get hashCode => unwrap_jso(this).hashCode; | 586 int get hashCode => unwrap_jso(this).hashCode; |
581 | 587 |
582 @DomName('AudioListener.dopplerFactor') | 588 @DomName('AudioListener.dopplerFactor') |
583 @DocsEditable() | 589 @DocsEditable() |
584 num get dopplerFactor => _blink.BlinkAudioListener.instance.dopplerFactor_Gett
er_(unwrap_jso(this)); | 590 num get dopplerFactor => _blink.BlinkAudioListener.instance.dopplerFactor_Gett
er_(unwrap_jso(this)); |
585 | 591 |
586 @DomName('AudioListener.dopplerFactor') | 592 @DomName('AudioListener.dopplerFactor') |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
623 | 629 |
624 @Deprecated("Internal Use Only") | 630 @Deprecated("Internal Use Only") |
625 static AudioNode internalCreateAudioNode() { | 631 static AudioNode internalCreateAudioNode() { |
626 return new AudioNode._internalWrap(); | 632 return new AudioNode._internalWrap(); |
627 } | 633 } |
628 | 634 |
629 factory AudioNode._internalWrap() { | 635 factory AudioNode._internalWrap() { |
630 return new AudioNode.internal_(); | 636 return new AudioNode.internal_(); |
631 } | 637 } |
632 | 638 |
| 639 @Deprecated("Internal Use Only") |
633 AudioNode.internal_() : super.internal_(); | 640 AudioNode.internal_() : super.internal_(); |
634 | 641 |
635 | 642 |
636 @DomName('AudioNode.channelCount') | 643 @DomName('AudioNode.channelCount') |
637 @DocsEditable() | 644 @DocsEditable() |
638 int get channelCount => _blink.BlinkAudioNode.instance.channelCount_Getter_(un
wrap_jso(this)); | 645 int get channelCount => _blink.BlinkAudioNode.instance.channelCount_Getter_(un
wrap_jso(this)); |
639 | 646 |
640 @DomName('AudioNode.channelCount') | 647 @DomName('AudioNode.channelCount') |
641 @DocsEditable() | 648 @DocsEditable() |
642 set channelCount(int value) => _blink.BlinkAudioNode.instance.channelCount_Set
ter_(unwrap_jso(this), value); | 649 set channelCount(int value) => _blink.BlinkAudioNode.instance.channelCount_Set
ter_(unwrap_jso(this), value); |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
710 | 717 |
711 @Deprecated("Internal Use Only") | 718 @Deprecated("Internal Use Only") |
712 static AudioParam internalCreateAudioParam() { | 719 static AudioParam internalCreateAudioParam() { |
713 return new AudioParam._internalWrap(); | 720 return new AudioParam._internalWrap(); |
714 } | 721 } |
715 | 722 |
716 factory AudioParam._internalWrap() { | 723 factory AudioParam._internalWrap() { |
717 return new AudioParam.internal_(); | 724 return new AudioParam.internal_(); |
718 } | 725 } |
719 | 726 |
| 727 @Deprecated("Internal Use Only") |
720 AudioParam.internal_() { } | 728 AudioParam.internal_() { } |
721 | 729 |
722 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 730 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
723 int get hashCode => unwrap_jso(this).hashCode; | 731 int get hashCode => unwrap_jso(this).hashCode; |
724 | 732 |
725 @DomName('AudioParam.defaultValue') | 733 @DomName('AudioParam.defaultValue') |
726 @DocsEditable() | 734 @DocsEditable() |
727 num get defaultValue => _blink.BlinkAudioParam.instance.defaultValue_Getter_(u
nwrap_jso(this)); | 735 num get defaultValue => _blink.BlinkAudioParam.instance.defaultValue_Getter_(u
nwrap_jso(this)); |
728 | 736 |
729 @DomName('AudioParam.value') | 737 @DomName('AudioParam.value') |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
777 | 785 |
778 @Deprecated("Internal Use Only") | 786 @Deprecated("Internal Use Only") |
779 static AudioProcessingEvent internalCreateAudioProcessingEvent() { | 787 static AudioProcessingEvent internalCreateAudioProcessingEvent() { |
780 return new AudioProcessingEvent._internalWrap(); | 788 return new AudioProcessingEvent._internalWrap(); |
781 } | 789 } |
782 | 790 |
783 factory AudioProcessingEvent._internalWrap() { | 791 factory AudioProcessingEvent._internalWrap() { |
784 return new AudioProcessingEvent.internal_(); | 792 return new AudioProcessingEvent.internal_(); |
785 } | 793 } |
786 | 794 |
| 795 @Deprecated("Internal Use Only") |
787 AudioProcessingEvent.internal_() : super.internal_(); | 796 AudioProcessingEvent.internal_() : super.internal_(); |
788 | 797 |
789 | 798 |
790 @DomName('AudioProcessingEvent.inputBuffer') | 799 @DomName('AudioProcessingEvent.inputBuffer') |
791 @DocsEditable() | 800 @DocsEditable() |
792 AudioBuffer get inputBuffer => wrap_jso(_blink.BlinkAudioProcessingEvent.insta
nce.inputBuffer_Getter_(unwrap_jso(this))); | 801 AudioBuffer get inputBuffer => wrap_jso(_blink.BlinkAudioProcessingEvent.insta
nce.inputBuffer_Getter_(unwrap_jso(this))); |
793 | 802 |
794 @DomName('AudioProcessingEvent.outputBuffer') | 803 @DomName('AudioProcessingEvent.outputBuffer') |
795 @DocsEditable() | 804 @DocsEditable() |
796 AudioBuffer get outputBuffer => wrap_jso(_blink.BlinkAudioProcessingEvent.inst
ance.outputBuffer_Getter_(unwrap_jso(this))); | 805 AudioBuffer get outputBuffer => wrap_jso(_blink.BlinkAudioProcessingEvent.inst
ance.outputBuffer_Getter_(unwrap_jso(this))); |
(...skipping 22 matching lines...) Expand all Loading... |
819 | 828 |
820 @Deprecated("Internal Use Only") | 829 @Deprecated("Internal Use Only") |
821 static AudioSourceNode internalCreateAudioSourceNode() { | 830 static AudioSourceNode internalCreateAudioSourceNode() { |
822 return new AudioSourceNode._internalWrap(); | 831 return new AudioSourceNode._internalWrap(); |
823 } | 832 } |
824 | 833 |
825 factory AudioSourceNode._internalWrap() { | 834 factory AudioSourceNode._internalWrap() { |
826 return new AudioSourceNode.internal_(); | 835 return new AudioSourceNode.internal_(); |
827 } | 836 } |
828 | 837 |
| 838 @Deprecated("Internal Use Only") |
829 AudioSourceNode.internal_() : super.internal_(); | 839 AudioSourceNode.internal_() : super.internal_(); |
830 | 840 |
831 | 841 |
832 } | 842 } |
833 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 843 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
834 // for details. All rights reserved. Use of this source code is governed by a | 844 // for details. All rights reserved. Use of this source code is governed by a |
835 // BSD-style license that can be found in the LICENSE file. | 845 // BSD-style license that can be found in the LICENSE file. |
836 | 846 |
837 // WARNING: Do not edit - generated code. | 847 // WARNING: Do not edit - generated code. |
838 | 848 |
839 | 849 |
840 @DocsEditable() | 850 @DocsEditable() |
841 @DomName('BiquadFilterNode') | 851 @DomName('BiquadFilterNode') |
842 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#BiquadF
ilterNode-section | 852 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#BiquadF
ilterNode-section |
843 @Experimental() | 853 @Experimental() |
844 class BiquadFilterNode extends AudioNode { | 854 class BiquadFilterNode extends AudioNode { |
845 // To suppress missing implicit constructor warnings. | 855 // To suppress missing implicit constructor warnings. |
846 factory BiquadFilterNode._() { throw new UnsupportedError("Not supported"); } | 856 factory BiquadFilterNode._() { throw new UnsupportedError("Not supported"); } |
847 | 857 |
848 | 858 |
849 @Deprecated("Internal Use Only") | 859 @Deprecated("Internal Use Only") |
850 static BiquadFilterNode internalCreateBiquadFilterNode() { | 860 static BiquadFilterNode internalCreateBiquadFilterNode() { |
851 return new BiquadFilterNode._internalWrap(); | 861 return new BiquadFilterNode._internalWrap(); |
852 } | 862 } |
853 | 863 |
854 factory BiquadFilterNode._internalWrap() { | 864 factory BiquadFilterNode._internalWrap() { |
855 return new BiquadFilterNode.internal_(); | 865 return new BiquadFilterNode.internal_(); |
856 } | 866 } |
857 | 867 |
| 868 @Deprecated("Internal Use Only") |
858 BiquadFilterNode.internal_() : super.internal_(); | 869 BiquadFilterNode.internal_() : super.internal_(); |
859 | 870 |
860 | 871 |
861 @DomName('BiquadFilterNode.Q') | 872 @DomName('BiquadFilterNode.Q') |
862 @DocsEditable() | 873 @DocsEditable() |
863 AudioParam get Q => wrap_jso(_blink.BlinkBiquadFilterNode.instance.Q_Getter_(u
nwrap_jso(this))); | 874 AudioParam get Q => wrap_jso(_blink.BlinkBiquadFilterNode.instance.Q_Getter_(u
nwrap_jso(this))); |
864 | 875 |
865 @DomName('BiquadFilterNode.detune') | 876 @DomName('BiquadFilterNode.detune') |
866 @DocsEditable() | 877 @DocsEditable() |
867 AudioParam get detune => wrap_jso(_blink.BlinkBiquadFilterNode.instance.detune
_Getter_(unwrap_jso(this))); | 878 AudioParam get detune => wrap_jso(_blink.BlinkBiquadFilterNode.instance.detune
_Getter_(unwrap_jso(this))); |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
905 | 916 |
906 @Deprecated("Internal Use Only") | 917 @Deprecated("Internal Use Only") |
907 static ChannelMergerNode internalCreateChannelMergerNode() { | 918 static ChannelMergerNode internalCreateChannelMergerNode() { |
908 return new ChannelMergerNode._internalWrap(); | 919 return new ChannelMergerNode._internalWrap(); |
909 } | 920 } |
910 | 921 |
911 factory ChannelMergerNode._internalWrap() { | 922 factory ChannelMergerNode._internalWrap() { |
912 return new ChannelMergerNode.internal_(); | 923 return new ChannelMergerNode.internal_(); |
913 } | 924 } |
914 | 925 |
| 926 @Deprecated("Internal Use Only") |
915 ChannelMergerNode.internal_() : super.internal_(); | 927 ChannelMergerNode.internal_() : super.internal_(); |
916 | 928 |
917 | 929 |
918 } | 930 } |
919 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 931 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
920 // for details. All rights reserved. Use of this source code is governed by a | 932 // for details. All rights reserved. Use of this source code is governed by a |
921 // BSD-style license that can be found in the LICENSE file. | 933 // BSD-style license that can be found in the LICENSE file. |
922 | 934 |
923 // WARNING: Do not edit - generated code. | 935 // WARNING: Do not edit - generated code. |
924 | 936 |
925 | 937 |
926 @DocsEditable() | 938 @DocsEditable() |
927 @DomName('ChannelSplitterNode') | 939 @DomName('ChannelSplitterNode') |
928 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#Channel
SplitterNode-section | 940 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#Channel
SplitterNode-section |
929 @Experimental() | 941 @Experimental() |
930 class ChannelSplitterNode extends AudioNode { | 942 class ChannelSplitterNode extends AudioNode { |
931 // To suppress missing implicit constructor warnings. | 943 // To suppress missing implicit constructor warnings. |
932 factory ChannelSplitterNode._() { throw new UnsupportedError("Not supported");
} | 944 factory ChannelSplitterNode._() { throw new UnsupportedError("Not supported");
} |
933 | 945 |
934 | 946 |
935 @Deprecated("Internal Use Only") | 947 @Deprecated("Internal Use Only") |
936 static ChannelSplitterNode internalCreateChannelSplitterNode() { | 948 static ChannelSplitterNode internalCreateChannelSplitterNode() { |
937 return new ChannelSplitterNode._internalWrap(); | 949 return new ChannelSplitterNode._internalWrap(); |
938 } | 950 } |
939 | 951 |
940 factory ChannelSplitterNode._internalWrap() { | 952 factory ChannelSplitterNode._internalWrap() { |
941 return new ChannelSplitterNode.internal_(); | 953 return new ChannelSplitterNode.internal_(); |
942 } | 954 } |
943 | 955 |
| 956 @Deprecated("Internal Use Only") |
944 ChannelSplitterNode.internal_() : super.internal_(); | 957 ChannelSplitterNode.internal_() : super.internal_(); |
945 | 958 |
946 | 959 |
947 } | 960 } |
948 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 961 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
949 // for details. All rights reserved. Use of this source code is governed by a | 962 // for details. All rights reserved. Use of this source code is governed by a |
950 // BSD-style license that can be found in the LICENSE file. | 963 // BSD-style license that can be found in the LICENSE file. |
951 | 964 |
952 // WARNING: Do not edit - generated code. | 965 // WARNING: Do not edit - generated code. |
953 | 966 |
954 | 967 |
955 @DocsEditable() | 968 @DocsEditable() |
956 @DomName('ConvolverNode') | 969 @DomName('ConvolverNode') |
957 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#Convolv
erNode | 970 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#Convolv
erNode |
958 @Experimental() | 971 @Experimental() |
959 class ConvolverNode extends AudioNode { | 972 class ConvolverNode extends AudioNode { |
960 // To suppress missing implicit constructor warnings. | 973 // To suppress missing implicit constructor warnings. |
961 factory ConvolverNode._() { throw new UnsupportedError("Not supported"); } | 974 factory ConvolverNode._() { throw new UnsupportedError("Not supported"); } |
962 | 975 |
963 | 976 |
964 @Deprecated("Internal Use Only") | 977 @Deprecated("Internal Use Only") |
965 static ConvolverNode internalCreateConvolverNode() { | 978 static ConvolverNode internalCreateConvolverNode() { |
966 return new ConvolverNode._internalWrap(); | 979 return new ConvolverNode._internalWrap(); |
967 } | 980 } |
968 | 981 |
969 factory ConvolverNode._internalWrap() { | 982 factory ConvolverNode._internalWrap() { |
970 return new ConvolverNode.internal_(); | 983 return new ConvolverNode.internal_(); |
971 } | 984 } |
972 | 985 |
| 986 @Deprecated("Internal Use Only") |
973 ConvolverNode.internal_() : super.internal_(); | 987 ConvolverNode.internal_() : super.internal_(); |
974 | 988 |
975 | 989 |
976 @DomName('ConvolverNode.buffer') | 990 @DomName('ConvolverNode.buffer') |
977 @DocsEditable() | 991 @DocsEditable() |
978 AudioBuffer get buffer => wrap_jso(_blink.BlinkConvolverNode.instance.buffer_G
etter_(unwrap_jso(this))); | 992 AudioBuffer get buffer => wrap_jso(_blink.BlinkConvolverNode.instance.buffer_G
etter_(unwrap_jso(this))); |
979 | 993 |
980 @DomName('ConvolverNode.buffer') | 994 @DomName('ConvolverNode.buffer') |
981 @DocsEditable() | 995 @DocsEditable() |
982 set buffer(AudioBuffer value) => _blink.BlinkConvolverNode.instance.buffer_Set
ter_(unwrap_jso(this), unwrap_jso(value)); | 996 set buffer(AudioBuffer value) => _blink.BlinkConvolverNode.instance.buffer_Set
ter_(unwrap_jso(this), unwrap_jso(value)); |
(...skipping 25 matching lines...) Expand all Loading... |
1008 | 1022 |
1009 @Deprecated("Internal Use Only") | 1023 @Deprecated("Internal Use Only") |
1010 static DelayNode internalCreateDelayNode() { | 1024 static DelayNode internalCreateDelayNode() { |
1011 return new DelayNode._internalWrap(); | 1025 return new DelayNode._internalWrap(); |
1012 } | 1026 } |
1013 | 1027 |
1014 factory DelayNode._internalWrap() { | 1028 factory DelayNode._internalWrap() { |
1015 return new DelayNode.internal_(); | 1029 return new DelayNode.internal_(); |
1016 } | 1030 } |
1017 | 1031 |
| 1032 @Deprecated("Internal Use Only") |
1018 DelayNode.internal_() : super.internal_(); | 1033 DelayNode.internal_() : super.internal_(); |
1019 | 1034 |
1020 | 1035 |
1021 @DomName('DelayNode.delayTime') | 1036 @DomName('DelayNode.delayTime') |
1022 @DocsEditable() | 1037 @DocsEditable() |
1023 AudioParam get delayTime => wrap_jso(_blink.BlinkDelayNode.instance.delayTime_
Getter_(unwrap_jso(this))); | 1038 AudioParam get delayTime => wrap_jso(_blink.BlinkDelayNode.instance.delayTime_
Getter_(unwrap_jso(this))); |
1024 | 1039 |
1025 } | 1040 } |
1026 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1041 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1027 // for details. All rights reserved. Use of this source code is governed by a | 1042 // for details. All rights reserved. Use of this source code is governed by a |
(...skipping 13 matching lines...) Expand all Loading... |
1041 | 1056 |
1042 @Deprecated("Internal Use Only") | 1057 @Deprecated("Internal Use Only") |
1043 static DynamicsCompressorNode internalCreateDynamicsCompressorNode() { | 1058 static DynamicsCompressorNode internalCreateDynamicsCompressorNode() { |
1044 return new DynamicsCompressorNode._internalWrap(); | 1059 return new DynamicsCompressorNode._internalWrap(); |
1045 } | 1060 } |
1046 | 1061 |
1047 factory DynamicsCompressorNode._internalWrap() { | 1062 factory DynamicsCompressorNode._internalWrap() { |
1048 return new DynamicsCompressorNode.internal_(); | 1063 return new DynamicsCompressorNode.internal_(); |
1049 } | 1064 } |
1050 | 1065 |
| 1066 @Deprecated("Internal Use Only") |
1051 DynamicsCompressorNode.internal_() : super.internal_(); | 1067 DynamicsCompressorNode.internal_() : super.internal_(); |
1052 | 1068 |
1053 | 1069 |
1054 @DomName('DynamicsCompressorNode.attack') | 1070 @DomName('DynamicsCompressorNode.attack') |
1055 @DocsEditable() | 1071 @DocsEditable() |
1056 AudioParam get attack => wrap_jso(_blink.BlinkDynamicsCompressorNode.instance.
attack_Getter_(unwrap_jso(this))); | 1072 AudioParam get attack => wrap_jso(_blink.BlinkDynamicsCompressorNode.instance.
attack_Getter_(unwrap_jso(this))); |
1057 | 1073 |
1058 @DomName('DynamicsCompressorNode.knee') | 1074 @DomName('DynamicsCompressorNode.knee') |
1059 @DocsEditable() | 1075 @DocsEditable() |
1060 AudioParam get knee => wrap_jso(_blink.BlinkDynamicsCompressorNode.instance.kn
ee_Getter_(unwrap_jso(this))); | 1076 AudioParam get knee => wrap_jso(_blink.BlinkDynamicsCompressorNode.instance.kn
ee_Getter_(unwrap_jso(this))); |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1094 | 1110 |
1095 @Deprecated("Internal Use Only") | 1111 @Deprecated("Internal Use Only") |
1096 static GainNode internalCreateGainNode() { | 1112 static GainNode internalCreateGainNode() { |
1097 return new GainNode._internalWrap(); | 1113 return new GainNode._internalWrap(); |
1098 } | 1114 } |
1099 | 1115 |
1100 factory GainNode._internalWrap() { | 1116 factory GainNode._internalWrap() { |
1101 return new GainNode.internal_(); | 1117 return new GainNode.internal_(); |
1102 } | 1118 } |
1103 | 1119 |
| 1120 @Deprecated("Internal Use Only") |
1104 GainNode.internal_() : super.internal_(); | 1121 GainNode.internal_() : super.internal_(); |
1105 | 1122 |
1106 | 1123 |
1107 @DomName('GainNode.gain') | 1124 @DomName('GainNode.gain') |
1108 @DocsEditable() | 1125 @DocsEditable() |
1109 AudioParam get gain => wrap_jso(_blink.BlinkGainNode.instance.gain_Getter_(unw
rap_jso(this))); | 1126 AudioParam get gain => wrap_jso(_blink.BlinkGainNode.instance.gain_Getter_(unw
rap_jso(this))); |
1110 | 1127 |
1111 } | 1128 } |
1112 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1129 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1113 // for details. All rights reserved. Use of this source code is governed by a | 1130 // for details. All rights reserved. Use of this source code is governed by a |
(...skipping 13 matching lines...) Expand all Loading... |
1127 | 1144 |
1128 @Deprecated("Internal Use Only") | 1145 @Deprecated("Internal Use Only") |
1129 static MediaElementAudioSourceNode internalCreateMediaElementAudioSourceNode()
{ | 1146 static MediaElementAudioSourceNode internalCreateMediaElementAudioSourceNode()
{ |
1130 return new MediaElementAudioSourceNode._internalWrap(); | 1147 return new MediaElementAudioSourceNode._internalWrap(); |
1131 } | 1148 } |
1132 | 1149 |
1133 factory MediaElementAudioSourceNode._internalWrap() { | 1150 factory MediaElementAudioSourceNode._internalWrap() { |
1134 return new MediaElementAudioSourceNode.internal_(); | 1151 return new MediaElementAudioSourceNode.internal_(); |
1135 } | 1152 } |
1136 | 1153 |
| 1154 @Deprecated("Internal Use Only") |
1137 MediaElementAudioSourceNode.internal_() : super.internal_(); | 1155 MediaElementAudioSourceNode.internal_() : super.internal_(); |
1138 | 1156 |
1139 | 1157 |
1140 @DomName('MediaElementAudioSourceNode.mediaElement') | 1158 @DomName('MediaElementAudioSourceNode.mediaElement') |
1141 @DocsEditable() | 1159 @DocsEditable() |
1142 @Experimental() // non-standard | 1160 @Experimental() // non-standard |
1143 MediaElement get mediaElement => wrap_jso(_blink.BlinkMediaElementAudioSourceN
ode.instance.mediaElement_Getter_(unwrap_jso(this))); | 1161 MediaElement get mediaElement => wrap_jso(_blink.BlinkMediaElementAudioSourceN
ode.instance.mediaElement_Getter_(unwrap_jso(this))); |
1144 | 1162 |
1145 } | 1163 } |
1146 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1164 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
(...skipping 14 matching lines...) Expand all Loading... |
1161 | 1179 |
1162 @Deprecated("Internal Use Only") | 1180 @Deprecated("Internal Use Only") |
1163 static MediaStreamAudioDestinationNode internalCreateMediaStreamAudioDestinati
onNode() { | 1181 static MediaStreamAudioDestinationNode internalCreateMediaStreamAudioDestinati
onNode() { |
1164 return new MediaStreamAudioDestinationNode._internalWrap(); | 1182 return new MediaStreamAudioDestinationNode._internalWrap(); |
1165 } | 1183 } |
1166 | 1184 |
1167 factory MediaStreamAudioDestinationNode._internalWrap() { | 1185 factory MediaStreamAudioDestinationNode._internalWrap() { |
1168 return new MediaStreamAudioDestinationNode.internal_(); | 1186 return new MediaStreamAudioDestinationNode.internal_(); |
1169 } | 1187 } |
1170 | 1188 |
| 1189 @Deprecated("Internal Use Only") |
1171 MediaStreamAudioDestinationNode.internal_() : super.internal_(); | 1190 MediaStreamAudioDestinationNode.internal_() : super.internal_(); |
1172 | 1191 |
1173 | 1192 |
1174 @DomName('MediaStreamAudioDestinationNode.stream') | 1193 @DomName('MediaStreamAudioDestinationNode.stream') |
1175 @DocsEditable() | 1194 @DocsEditable() |
1176 MediaStream get stream => wrap_jso(_blink.BlinkMediaStreamAudioDestinationNode
.instance.stream_Getter_(unwrap_jso(this))); | 1195 MediaStream get stream => wrap_jso(_blink.BlinkMediaStreamAudioDestinationNode
.instance.stream_Getter_(unwrap_jso(this))); |
1177 | 1196 |
1178 } | 1197 } |
1179 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1198 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1180 // for details. All rights reserved. Use of this source code is governed by a | 1199 // for details. All rights reserved. Use of this source code is governed by a |
(...skipping 13 matching lines...) Expand all Loading... |
1194 | 1213 |
1195 @Deprecated("Internal Use Only") | 1214 @Deprecated("Internal Use Only") |
1196 static MediaStreamAudioSourceNode internalCreateMediaStreamAudioSourceNode() { | 1215 static MediaStreamAudioSourceNode internalCreateMediaStreamAudioSourceNode() { |
1197 return new MediaStreamAudioSourceNode._internalWrap(); | 1216 return new MediaStreamAudioSourceNode._internalWrap(); |
1198 } | 1217 } |
1199 | 1218 |
1200 factory MediaStreamAudioSourceNode._internalWrap() { | 1219 factory MediaStreamAudioSourceNode._internalWrap() { |
1201 return new MediaStreamAudioSourceNode.internal_(); | 1220 return new MediaStreamAudioSourceNode.internal_(); |
1202 } | 1221 } |
1203 | 1222 |
| 1223 @Deprecated("Internal Use Only") |
1204 MediaStreamAudioSourceNode.internal_() : super.internal_(); | 1224 MediaStreamAudioSourceNode.internal_() : super.internal_(); |
1205 | 1225 |
1206 | 1226 |
1207 @DomName('MediaStreamAudioSourceNode.mediaStream') | 1227 @DomName('MediaStreamAudioSourceNode.mediaStream') |
1208 @DocsEditable() | 1228 @DocsEditable() |
1209 MediaStream get mediaStream => wrap_jso(_blink.BlinkMediaStreamAudioSourceNode
.instance.mediaStream_Getter_(unwrap_jso(this))); | 1229 MediaStream get mediaStream => wrap_jso(_blink.BlinkMediaStreamAudioSourceNode
.instance.mediaStream_Getter_(unwrap_jso(this))); |
1210 | 1230 |
1211 } | 1231 } |
1212 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1232 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1213 // for details. All rights reserved. Use of this source code is governed by a | 1233 // for details. All rights reserved. Use of this source code is governed by a |
(...skipping 13 matching lines...) Expand all Loading... |
1227 | 1247 |
1228 @Deprecated("Internal Use Only") | 1248 @Deprecated("Internal Use Only") |
1229 static OfflineAudioCompletionEvent internalCreateOfflineAudioCompletionEvent()
{ | 1249 static OfflineAudioCompletionEvent internalCreateOfflineAudioCompletionEvent()
{ |
1230 return new OfflineAudioCompletionEvent._internalWrap(); | 1250 return new OfflineAudioCompletionEvent._internalWrap(); |
1231 } | 1251 } |
1232 | 1252 |
1233 factory OfflineAudioCompletionEvent._internalWrap() { | 1253 factory OfflineAudioCompletionEvent._internalWrap() { |
1234 return new OfflineAudioCompletionEvent.internal_(); | 1254 return new OfflineAudioCompletionEvent.internal_(); |
1235 } | 1255 } |
1236 | 1256 |
| 1257 @Deprecated("Internal Use Only") |
1237 OfflineAudioCompletionEvent.internal_() : super.internal_(); | 1258 OfflineAudioCompletionEvent.internal_() : super.internal_(); |
1238 | 1259 |
1239 | 1260 |
1240 @DomName('OfflineAudioCompletionEvent.renderedBuffer') | 1261 @DomName('OfflineAudioCompletionEvent.renderedBuffer') |
1241 @DocsEditable() | 1262 @DocsEditable() |
1242 AudioBuffer get renderedBuffer => wrap_jso(_blink.BlinkOfflineAudioCompletionE
vent.instance.renderedBuffer_Getter_(unwrap_jso(this))); | 1263 AudioBuffer get renderedBuffer => wrap_jso(_blink.BlinkOfflineAudioCompletionE
vent.instance.renderedBuffer_Getter_(unwrap_jso(this))); |
1243 | 1264 |
1244 } | 1265 } |
1245 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1266 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1246 // for details. All rights reserved. Use of this source code is governed by a | 1267 // for details. All rights reserved. Use of this source code is governed by a |
(...skipping 19 matching lines...) Expand all Loading... |
1266 | 1287 |
1267 @Deprecated("Internal Use Only") | 1288 @Deprecated("Internal Use Only") |
1268 static OfflineAudioContext internalCreateOfflineAudioContext() { | 1289 static OfflineAudioContext internalCreateOfflineAudioContext() { |
1269 return new OfflineAudioContext._internalWrap(); | 1290 return new OfflineAudioContext._internalWrap(); |
1270 } | 1291 } |
1271 | 1292 |
1272 factory OfflineAudioContext._internalWrap() { | 1293 factory OfflineAudioContext._internalWrap() { |
1273 return new OfflineAudioContext.internal_(); | 1294 return new OfflineAudioContext.internal_(); |
1274 } | 1295 } |
1275 | 1296 |
| 1297 @Deprecated("Internal Use Only") |
1276 OfflineAudioContext.internal_() : super.internal_(); | 1298 OfflineAudioContext.internal_() : super.internal_(); |
1277 | 1299 |
1278 | 1300 |
1279 } | 1301 } |
1280 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1302 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1281 // for details. All rights reserved. Use of this source code is governed by a | 1303 // for details. All rights reserved. Use of this source code is governed by a |
1282 // BSD-style license that can be found in the LICENSE file. | 1304 // BSD-style license that can be found in the LICENSE file. |
1283 | 1305 |
1284 // WARNING: Do not edit - generated code. | 1306 // WARNING: Do not edit - generated code. |
1285 | 1307 |
(...skipping 20 matching lines...) Expand all Loading... |
1306 | 1328 |
1307 @Deprecated("Internal Use Only") | 1329 @Deprecated("Internal Use Only") |
1308 static OscillatorNode internalCreateOscillatorNode() { | 1330 static OscillatorNode internalCreateOscillatorNode() { |
1309 return new OscillatorNode._internalWrap(); | 1331 return new OscillatorNode._internalWrap(); |
1310 } | 1332 } |
1311 | 1333 |
1312 factory OscillatorNode._internalWrap() { | 1334 factory OscillatorNode._internalWrap() { |
1313 return new OscillatorNode.internal_(); | 1335 return new OscillatorNode.internal_(); |
1314 } | 1336 } |
1315 | 1337 |
| 1338 @Deprecated("Internal Use Only") |
1316 OscillatorNode.internal_() : super.internal_(); | 1339 OscillatorNode.internal_() : super.internal_(); |
1317 | 1340 |
1318 | 1341 |
1319 @DomName('OscillatorNode.detune') | 1342 @DomName('OscillatorNode.detune') |
1320 @DocsEditable() | 1343 @DocsEditable() |
1321 AudioParam get detune => wrap_jso(_blink.BlinkOscillatorNode.instance.detune_G
etter_(unwrap_jso(this))); | 1344 AudioParam get detune => wrap_jso(_blink.BlinkOscillatorNode.instance.detune_G
etter_(unwrap_jso(this))); |
1322 | 1345 |
1323 @DomName('OscillatorNode.frequency') | 1346 @DomName('OscillatorNode.frequency') |
1324 @DocsEditable() | 1347 @DocsEditable() |
1325 AudioParam get frequency => wrap_jso(_blink.BlinkOscillatorNode.instance.frequ
ency_Getter_(unwrap_jso(this))); | 1348 AudioParam get frequency => wrap_jso(_blink.BlinkOscillatorNode.instance.frequ
ency_Getter_(unwrap_jso(this))); |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1388 | 1411 |
1389 @Deprecated("Internal Use Only") | 1412 @Deprecated("Internal Use Only") |
1390 static PannerNode internalCreatePannerNode() { | 1413 static PannerNode internalCreatePannerNode() { |
1391 return new PannerNode._internalWrap(); | 1414 return new PannerNode._internalWrap(); |
1392 } | 1415 } |
1393 | 1416 |
1394 factory PannerNode._internalWrap() { | 1417 factory PannerNode._internalWrap() { |
1395 return new PannerNode.internal_(); | 1418 return new PannerNode.internal_(); |
1396 } | 1419 } |
1397 | 1420 |
| 1421 @Deprecated("Internal Use Only") |
1398 PannerNode.internal_() : super.internal_(); | 1422 PannerNode.internal_() : super.internal_(); |
1399 | 1423 |
1400 | 1424 |
1401 @DomName('PannerNode.coneInnerAngle') | 1425 @DomName('PannerNode.coneInnerAngle') |
1402 @DocsEditable() | 1426 @DocsEditable() |
1403 num get coneInnerAngle => _blink.BlinkPannerNode.instance.coneInnerAngle_Gette
r_(unwrap_jso(this)); | 1427 num get coneInnerAngle => _blink.BlinkPannerNode.instance.coneInnerAngle_Gette
r_(unwrap_jso(this)); |
1404 | 1428 |
1405 @DomName('PannerNode.coneInnerAngle') | 1429 @DomName('PannerNode.coneInnerAngle') |
1406 @DocsEditable() | 1430 @DocsEditable() |
1407 set coneInnerAngle(num value) => _blink.BlinkPannerNode.instance.coneInnerAngl
e_Setter_(unwrap_jso(this), value); | 1431 set coneInnerAngle(num value) => _blink.BlinkPannerNode.instance.coneInnerAngl
e_Setter_(unwrap_jso(this), value); |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1491 | 1515 |
1492 @Deprecated("Internal Use Only") | 1516 @Deprecated("Internal Use Only") |
1493 static PeriodicWave internalCreatePeriodicWave() { | 1517 static PeriodicWave internalCreatePeriodicWave() { |
1494 return new PeriodicWave._internalWrap(); | 1518 return new PeriodicWave._internalWrap(); |
1495 } | 1519 } |
1496 | 1520 |
1497 factory PeriodicWave._internalWrap() { | 1521 factory PeriodicWave._internalWrap() { |
1498 return new PeriodicWave.internal_(); | 1522 return new PeriodicWave.internal_(); |
1499 } | 1523 } |
1500 | 1524 |
| 1525 @Deprecated("Internal Use Only") |
1501 PeriodicWave.internal_() { } | 1526 PeriodicWave.internal_() { } |
1502 | 1527 |
1503 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1528 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1504 int get hashCode => unwrap_jso(this).hashCode; | 1529 int get hashCode => unwrap_jso(this).hashCode; |
1505 | 1530 |
1506 } | 1531 } |
1507 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1532 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1508 // for details. All rights reserved. Use of this source code is governed by a | 1533 // for details. All rights reserved. Use of this source code is governed by a |
1509 // BSD-style license that can be found in the LICENSE file. | 1534 // BSD-style license that can be found in the LICENSE file. |
1510 | 1535 |
(...skipping 22 matching lines...) Expand all Loading... |
1533 | 1558 |
1534 @Deprecated("Internal Use Only") | 1559 @Deprecated("Internal Use Only") |
1535 static ScriptProcessorNode internalCreateScriptProcessorNode() { | 1560 static ScriptProcessorNode internalCreateScriptProcessorNode() { |
1536 return new ScriptProcessorNode._internalWrap(); | 1561 return new ScriptProcessorNode._internalWrap(); |
1537 } | 1562 } |
1538 | 1563 |
1539 factory ScriptProcessorNode._internalWrap() { | 1564 factory ScriptProcessorNode._internalWrap() { |
1540 return new ScriptProcessorNode.internal_(); | 1565 return new ScriptProcessorNode.internal_(); |
1541 } | 1566 } |
1542 | 1567 |
| 1568 @Deprecated("Internal Use Only") |
1543 ScriptProcessorNode.internal_() : super.internal_(); | 1569 ScriptProcessorNode.internal_() : super.internal_(); |
1544 | 1570 |
1545 | 1571 |
1546 @DomName('ScriptProcessorNode.bufferSize') | 1572 @DomName('ScriptProcessorNode.bufferSize') |
1547 @DocsEditable() | 1573 @DocsEditable() |
1548 int get bufferSize => _blink.BlinkScriptProcessorNode.instance.bufferSize_Gett
er_(unwrap_jso(this)); | 1574 int get bufferSize => _blink.BlinkScriptProcessorNode.instance.bufferSize_Gett
er_(unwrap_jso(this)); |
1549 | 1575 |
1550 @DomName('ScriptProcessorNode.setEventListener') | 1576 @DomName('ScriptProcessorNode.setEventListener') |
1551 @DocsEditable() | 1577 @DocsEditable() |
1552 @Experimental() // untriaged | 1578 @Experimental() // untriaged |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1584 | 1610 |
1585 @Deprecated("Internal Use Only") | 1611 @Deprecated("Internal Use Only") |
1586 static WaveShaperNode internalCreateWaveShaperNode() { | 1612 static WaveShaperNode internalCreateWaveShaperNode() { |
1587 return new WaveShaperNode._internalWrap(); | 1613 return new WaveShaperNode._internalWrap(); |
1588 } | 1614 } |
1589 | 1615 |
1590 factory WaveShaperNode._internalWrap() { | 1616 factory WaveShaperNode._internalWrap() { |
1591 return new WaveShaperNode.internal_(); | 1617 return new WaveShaperNode.internal_(); |
1592 } | 1618 } |
1593 | 1619 |
| 1620 @Deprecated("Internal Use Only") |
1594 WaveShaperNode.internal_() : super.internal_(); | 1621 WaveShaperNode.internal_() : super.internal_(); |
1595 | 1622 |
1596 | 1623 |
1597 @DomName('WaveShaperNode.curve') | 1624 @DomName('WaveShaperNode.curve') |
1598 @DocsEditable() | 1625 @DocsEditable() |
1599 Float32List get curve => _blink.BlinkWaveShaperNode.instance.curve_Getter_(unw
rap_jso(this)); | 1626 Float32List get curve => _blink.BlinkWaveShaperNode.instance.curve_Getter_(unw
rap_jso(this)); |
1600 | 1627 |
1601 @DomName('WaveShaperNode.curve') | 1628 @DomName('WaveShaperNode.curve') |
1602 @DocsEditable() | 1629 @DocsEditable() |
1603 set curve(Float32List value) => _blink.BlinkWaveShaperNode.instance.curve_Sett
er_(unwrap_jso(this), unwrap_jso(value)); | 1630 set curve(Float32List value) => _blink.BlinkWaveShaperNode.instance.curve_Sett
er_(unwrap_jso(this), unwrap_jso(value)); |
1604 | 1631 |
1605 @DomName('WaveShaperNode.oversample') | 1632 @DomName('WaveShaperNode.oversample') |
1606 @DocsEditable() | 1633 @DocsEditable() |
1607 String get oversample => _blink.BlinkWaveShaperNode.instance.oversample_Getter
_(unwrap_jso(this)); | 1634 String get oversample => _blink.BlinkWaveShaperNode.instance.oversample_Getter
_(unwrap_jso(this)); |
1608 | 1635 |
1609 @DomName('WaveShaperNode.oversample') | 1636 @DomName('WaveShaperNode.oversample') |
1610 @DocsEditable() | 1637 @DocsEditable() |
1611 set oversample(String value) => _blink.BlinkWaveShaperNode.instance.oversample
_Setter_(unwrap_jso(this), value); | 1638 set oversample(String value) => _blink.BlinkWaveShaperNode.instance.oversample
_Setter_(unwrap_jso(this), value); |
1612 | 1639 |
1613 } | 1640 } |
OLD | NEW |