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

Side by Side Diff: sdk/lib/web_audio/dartium/web_audio_dartium.dart

Issue 11510013: Making ScriptProcessorNode not an EventTarget. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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
OLDNEW
1 library dart.dom.web_audio; 1 library dart.dom.web_audio;
2 2
3 import 'dart:async'; 3 import 'dart:async';
4 import 'dart:collection'; 4 import 'dart:collection';
5 import 'dart:html'; 5 import 'dart:html';
6 import 'dart:html_common'; 6 import 'dart:html_common';
7 import 'dart:nativewrappers'; 7 import 'dart:nativewrappers';
8 import 'dart:typeddata' as _typeddata; 8 import 'dart:typeddata' as _typeddata;
9 // DO NOT EDIT 9 // DO NOT EDIT
10 // Auto-generated dart:audio library. 10 // Auto-generated dart:audio library.
(...skipping 1068 matching lines...) Expand 10 before | Expand all | Expand 10 after
1079 1079
1080 @DomName('PannerNode.setPosition') 1080 @DomName('PannerNode.setPosition')
1081 @DocsEditable 1081 @DocsEditable
1082 void setPosition(num x, num y, num z) native "PannerNode_setPosition_Callback" ; 1082 void setPosition(num x, num y, num z) native "PannerNode_setPosition_Callback" ;
1083 1083
1084 @DomName('PannerNode.setVelocity') 1084 @DomName('PannerNode.setVelocity')
1085 @DocsEditable 1085 @DocsEditable
1086 void setVelocity(num x, num y, num z) native "PannerNode_setVelocity_Callback" ; 1086 void setVelocity(num x, num y, num z) native "PannerNode_setVelocity_Callback" ;
1087 1087
1088 } 1088 }
1089 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1089 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
1090 // for details. All rights reserved. Use of this source code is governed by a 1090 // for details. All rights reserved. Use of this source code is governed by a
1091 // BSD-style license that can be found in the LICENSE file. 1091 // BSD-style license that can be found in the LICENSE file.
1092 1092
1093 // WARNING: Do not edit - generated code.
1094 1093
1095
1096 @DocsEditable
1097 @DomName('ScriptProcessorNode') 1094 @DomName('ScriptProcessorNode')
1098 class ScriptProcessorNode extends AudioNode implements EventTarget { 1095 class ScriptProcessorNode extends AudioNode {
1096 void set onAudioProcess(EventListener listener) {
1097 //TODO(antonm): Get this working on Dartium.
1098 }
1099 ScriptProcessorNode.internal() : super.internal(); 1099 ScriptProcessorNode.internal() : super.internal();
1100 1100
1101 @DomName('ScriptProcessorNode.bufferSize') 1101 @DomName('ScriptProcessorNode.bufferSize')
1102 @DocsEditable 1102 @DocsEditable
1103 int get bufferSize native "ScriptProcessorNode_bufferSize_Getter"; 1103 int get bufferSize native "ScriptProcessorNode_bufferSize_Getter";
1104 1104
1105 } 1105 }
1106
1106 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1107 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1107 // for details. All rights reserved. Use of this source code is governed by a 1108 // for details. All rights reserved. Use of this source code is governed by a
1108 // BSD-style license that can be found in the LICENSE file. 1109 // BSD-style license that can be found in the LICENSE file.
1109 1110
1110 // WARNING: Do not edit - generated code. 1111 // WARNING: Do not edit - generated code.
1111 1112
1112 1113
1113 @DocsEditable 1114 @DocsEditable
1114 @DomName('WaveShaperNode') 1115 @DomName('WaveShaperNode')
1115 class WaveShaperNode extends AudioNode { 1116 class WaveShaperNode extends AudioNode {
(...skipping 14 matching lines...) Expand all
1130 1131
1131 // WARNING: Do not edit - generated code. 1132 // WARNING: Do not edit - generated code.
1132 1133
1133 1134
1134 @DocsEditable 1135 @DocsEditable
1135 @DomName('WaveTable') 1136 @DomName('WaveTable')
1136 class WaveTable extends NativeFieldWrapperClass1 { 1137 class WaveTable extends NativeFieldWrapperClass1 {
1137 WaveTable.internal(); 1138 WaveTable.internal();
1138 1139
1139 } 1140 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698