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

Unified Diff: client/dom/generated/src/wrapping/_DedicatedWorkerContextWrappingImplementation.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/_DedicatedWorkerContextWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_DedicatedWorkerContextWrappingImplementation.dart b/client/dom/generated/src/wrapping/_DedicatedWorkerContextWrappingImplementation.dart
index 926fc587bab61a7e55ff95d350c7b17e944fec7b..a37204219d68758240ab9fb5de49c8074f2ce505 100644
--- a/client/dom/generated/src/wrapping/_DedicatedWorkerContextWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_DedicatedWorkerContextWrappingImplementation.dart
@@ -11,6 +11,12 @@ class _DedicatedWorkerContextWrappingImplementation extends _WorkerContextWrappi
return new _DedicatedWorkerContextWrappingImplementation();
}
+ EventListener get onmessage() { return _get_onmessage(this); }
+ static EventListener _get_onmessage(var _this) native;
+
+ void set onmessage(EventListener value) { _set_onmessage(this, value); }
+ static void _set_onmessage(var _this, EventListener value) native;
+
void postMessage(Object message, [List messagePorts = null]) {
if (messagePorts === null) {
_postMessage(this, message);

Powered by Google App Engine
This is Rietveld 408576698