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

Side by Side Diff: tools/dom/templates/html/impl/impl_ScriptProcessorNode.darttemplate

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
(Empty)
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 part of $LIBRARY;
6
7 $(ANNOTATIONS)class $CLASSNAME$EXTENDS$NATIVESPEC {
8 void set onAudioProcess(EventListener listener) {
blois 2013/03/13 00:46:49 should probably be void callback(AudioProcessingEv
podivilov 2013/03/13 07:57:56 AFAIR we deliberately abandoned attribute event li
Emily Fortuna 2013/03/13 23:35:21 The reason this can't fit in like all the other ev
9 $if DART2JS
10 JS('void', '#.onaudioprocess = #', this,
11 convertDartClosureToJS(listener, 1));
12 $else
13 //TODO(antonm): Get this working on Dartium.
14 $endif
15 }
16 $!MEMBERS
podivilov 2013/03/13 07:57:56 There's no onAudioProcess getter, right? Is it int
17 }
18
OLDNEW
« tests/html/html.status ('K') | « tools/dom/templates/html/dart2js/web_audio_dart2js.darttemplate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698