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

Unified Diff: client/dom/generated/src/wrapping/_AudioContextWrappingImplementation.dart

Issue 8894029: Generate EventListener attributes of non-EventTarget classes. (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
Index: client/dom/generated/src/wrapping/_AudioContextWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_AudioContextWrappingImplementation.dart b/client/dom/generated/src/wrapping/_AudioContextWrappingImplementation.dart
index 4dafcfb2a7f16ea6c8a29c20a3fb529938219943..44c453fb7e215c10dccfb47b581efdd33005fc60 100644
--- a/client/dom/generated/src/wrapping/_AudioContextWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_AudioContextWrappingImplementation.dart
@@ -20,6 +20,12 @@ class _AudioContextWrappingImplementation extends DOMWrapperBase implements Audi
AudioListener get listener() { return _get_listener(this); }
static AudioListener _get_listener(var _this) native;
+ EventListener get oncomplete() { return _get_oncomplete(this); }
+ static EventListener _get_oncomplete(var _this) native;
+
+ void set oncomplete(EventListener value) { _set_oncomplete(this, value); }
+ static void _set_oncomplete(var _this, EventListener value) native;
+
num get sampleRate() { return _get_sampleRate(this); }
static num _get_sampleRate(var _this) native;

Powered by Google App Engine
This is Rietveld 408576698