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

Unified Diff: client/dom/generated/wrapping_dom.js

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:
Download patch
Index: client/dom/generated/wrapping_dom.js
diff --git a/client/dom/generated/wrapping_dom.js b/client/dom/generated/wrapping_dom.js
index d38007c54d1afe4c416901d7b285f7db8783a81f..4ca13b60ce060e7b94222722b2467749a9dd7dd3 100644
--- a/client/dom/generated/wrapping_dom.js
+++ b/client/dom/generated/wrapping_dom.js
@@ -16782,6 +16782,46 @@ function native__JavaScriptAudioNodeWrappingImplementation__get_bufferSize(_this
}
}
+function native__JavaScriptAudioNodeWrappingImplementation__addEventListener(_this, type, listener) {
+ try {
+ return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwrap(listener)));
+ } catch (e) {
+ throw __dom_wrap_exception(e);
+ }
+}
+
+function native__JavaScriptAudioNodeWrappingImplementation__addEventListener_2(_this, type, listener, useCapture) {
+ try {
+ return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwrap(listener), __dom_unwrap(useCapture)));
+ } catch (e) {
+ throw __dom_wrap_exception(e);
+ }
+}
+
+function native__JavaScriptAudioNodeWrappingImplementation__dispatchEvent(_this, event) {
+ try {
+ return __dom_wrap(_this.$dom.dispatchEvent(__dom_unwrap(event)));
+ } catch (e) {
+ throw __dom_wrap_exception(e);
+ }
+}
+
+function native__JavaScriptAudioNodeWrappingImplementation__removeEventListener(_this, type, listener) {
+ try {
+ return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_unwrap(listener)));
+ } catch (e) {
+ throw __dom_wrap_exception(e);
+ }
+}
+
+function native__JavaScriptAudioNodeWrappingImplementation__removeEventListener_2(_this, type, listener, useCapture) {
+ try {
+ return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_unwrap(listener), __dom_unwrap(useCapture)));
+ } catch (e) {
+ throw __dom_wrap_exception(e);
+ }
+}
+
function native__JavaScriptCallFrameWrappingImplementation__get_caller(_this) {
try {
return __dom_wrap(_this.$dom.caller);

Powered by Google App Engine
This is Rietveld 408576698