| 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 867 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 878 } | 878 } |
| 879 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 879 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 880 // for details. All rights reserved. Use of this source code is governed by a | 880 // for details. All rights reserved. Use of this source code is governed by a |
| 881 // BSD-style license that can be found in the LICENSE file. | 881 // BSD-style license that can be found in the LICENSE file. |
| 882 | 882 |
| 883 | 883 |
| 884 @DocsEditable() | 884 @DocsEditable() |
| 885 @DomName('PannerNode') | 885 @DomName('PannerNode') |
| 886 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#PannerN
ode | 886 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#PannerN
ode |
| 887 @Experimental() | 887 @Experimental() |
| 888 @Native("PannerNode,AudioPannerNode") | 888 @Native("PannerNode,AudioPannerNode,webkitAudioPannerNode") |
| 889 class PannerNode extends AudioNode { | 889 class PannerNode extends AudioNode { |
| 890 // To suppress missing implicit constructor warnings. | 890 // To suppress missing implicit constructor warnings. |
| 891 factory PannerNode._() { throw new UnsupportedError("Not supported"); } | 891 factory PannerNode._() { throw new UnsupportedError("Not supported"); } |
| 892 | 892 |
| 893 @DomName('PannerNode.coneInnerAngle') | 893 @DomName('PannerNode.coneInnerAngle') |
| 894 @DocsEditable() | 894 @DocsEditable() |
| 895 num coneInnerAngle; | 895 num coneInnerAngle; |
| 896 | 896 |
| 897 @DomName('PannerNode.coneOuterAngle') | 897 @DomName('PannerNode.coneOuterAngle') |
| 898 @DocsEditable() | 898 @DocsEditable() |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 985 factory WaveShaperNode._() { throw new UnsupportedError("Not supported"); } | 985 factory WaveShaperNode._() { throw new UnsupportedError("Not supported"); } |
| 986 | 986 |
| 987 @DomName('WaveShaperNode.curve') | 987 @DomName('WaveShaperNode.curve') |
| 988 @DocsEditable() | 988 @DocsEditable() |
| 989 Float32List curve; | 989 Float32List curve; |
| 990 | 990 |
| 991 @DomName('WaveShaperNode.oversample') | 991 @DomName('WaveShaperNode.oversample') |
| 992 @DocsEditable() | 992 @DocsEditable() |
| 993 String oversample; | 993 String oversample; |
| 994 } | 994 } |
| OLD | NEW |