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

Unified Diff: client/dom/frog/frog_dom.dart

Issue 8872040: JavaScriptAudioNode is an EventTarget. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | client/dom/generated/monkey_dom.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/frog/frog_dom.dart
diff --git a/client/dom/frog/frog_dom.dart b/client/dom/frog/frog_dom.dart
index efa2773eb040dc6c93a71d28ecc4a7f82484f84b..de037ab5ea7e3d2ae6312849939905640a4010ce 100644
--- a/client/dom/frog/frog_dom.dart
+++ b/client/dom/frog/frog_dom.dart
@@ -4329,6 +4329,14 @@ class Int8Array extends ArrayBufferView implements List<int> native "Int8Array"
class JavaScriptAudioNode extends AudioNode native "*JavaScriptAudioNode" {
int bufferSize;
+
+ // From EventTarget
+
+ void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
+
+ bool dispatchEvent(Event event) native;
+
+ void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
}
class JavaScriptCallFrame native "*JavaScriptCallFrame" {
« no previous file with comments | « no previous file | client/dom/generated/monkey_dom.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698