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

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

Issue 11469039: Make ScriptProcessorNode not a proper event (because it isn't). This fixes the last of the static a… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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 web_audio; 1 library web_audio;
2 2
3 import 'dart:html'; 3 import 'dart:html';
4 import 'dart:nativewrappers'; 4 import 'dart:nativewrappers';
5 // DO NOT EDIT 5 // DO NOT EDIT
6 // Auto-generated dart:audio library. 6 // Auto-generated dart:audio library.
7 7
8 8
9 9
10 10
(...skipping 984 matching lines...) Expand 10 before | Expand all | Expand 10 after
995 995
996 } 996 }
997 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 997 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
998 // for details. All rights reserved. Use of this source code is governed by a 998 // for details. All rights reserved. Use of this source code is governed by a
999 // BSD-style license that can be found in the LICENSE file. 999 // BSD-style license that can be found in the LICENSE file.
1000 1000
1001 // WARNING: Do not edit - generated code. 1001 // WARNING: Do not edit - generated code.
1002 1002
1003 1003
1004 /// @domName ScriptProcessorNode 1004 /// @domName ScriptProcessorNode
1005 class ScriptProcessorNode extends AudioNode implements EventTarget { 1005 class ScriptProcessorNode extends AudioNode {
1006 ScriptProcessorNode.internal(): super.internal(); 1006 ScriptProcessorNode.internal(): super.internal();
1007 1007
1008 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev entTarget.dispatchEvent; @docsEditable true
1009 ScriptProcessorNodeEvents get on =>
1010 new ScriptProcessorNodeEvents(this);
1011
1012 1008
1013 /** @domName ScriptProcessorNode.bufferSize */ 1009 /** @domName ScriptProcessorNode.bufferSize */
1014 int get bufferSize native "ScriptProcessorNode_bufferSize_Getter"; 1010 int get bufferSize native "ScriptProcessorNode_bufferSize_Getter";
1015 1011
1016 }
1017 1012
1018 class ScriptProcessorNodeEvents extends Events { 1013 /** @domName ScriptProcessorNode.onaudioprocess */
1019 ScriptProcessorNodeEvents(EventTarget _ptr) : super(_ptr); 1014 EventListener get onaudioprocess native "ScriptProcessorNode_onaudioprocess_Ge tter";
1020 1015
1021 EventListenerList get audioProcess => this['audioprocess']; 1016
1017 /** @domName ScriptProcessorNode.onaudioprocess */
1018 void set onaudioprocess(EventListener value) native "ScriptProcessorNode_onaud ioprocess_Setter";
1019
1022 } 1020 }
1023 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1021 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1024 // for details. All rights reserved. Use of this source code is governed by a 1022 // for details. All rights reserved. Use of this source code is governed by a
1025 // BSD-style license that can be found in the LICENSE file. 1023 // BSD-style license that can be found in the LICENSE file.
1026 1024
1027 // WARNING: Do not edit - generated code. 1025 // WARNING: Do not edit - generated code.
1028 1026
1029 1027
1030 /// @domName WaveShaperNode 1028 /// @domName WaveShaperNode
1031 class WaveShaperNode extends AudioNode { 1029 class WaveShaperNode extends AudioNode {
(...skipping 13 matching lines...) Expand all
1045 // BSD-style license that can be found in the LICENSE file. 1043 // BSD-style license that can be found in the LICENSE file.
1046 1044
1047 // WARNING: Do not edit - generated code. 1045 // WARNING: Do not edit - generated code.
1048 1046
1049 1047
1050 /// @domName WaveTable 1048 /// @domName WaveTable
1051 class WaveTable extends NativeFieldWrapperClass1 { 1049 class WaveTable extends NativeFieldWrapperClass1 {
1052 WaveTable.internal(); 1050 WaveTable.internal();
1053 1051
1054 } 1052 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698