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

Side by Side Diff: sdk/lib/web_audio/dart2js/web_audio_dart2js.dart

Issue 873803002: Add webkitAudioPannerNode as an optional name (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | tests/html/audiocontext_test.dart » ('j') | tests/html/audiocontext_test.dart » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | tests/html/audiocontext_test.dart » ('j') | tests/html/audiocontext_test.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698