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

Unified Diff: client/dom/generated/src/wrapping/_IDBTransactionWrappingImplementation.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/_IDBTransactionWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_IDBTransactionWrappingImplementation.dart b/client/dom/generated/src/wrapping/_IDBTransactionWrappingImplementation.dart
index 0843cb5dbaa5ed83cd26e77a722dc1de4592cc08..ed1b539f0c2964507c10c7c2f9035734f7872d86 100644
--- a/client/dom/generated/src/wrapping/_IDBTransactionWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_IDBTransactionWrappingImplementation.dart
@@ -17,6 +17,24 @@ class _IDBTransactionWrappingImplementation extends DOMWrapperBase implements ID
int get mode() { return _get_mode(this); }
static int _get_mode(var _this) native;
+ EventListener get onabort() { return _get_onabort(this); }
+ static EventListener _get_onabort(var _this) native;
+
+ void set onabort(EventListener value) { _set_onabort(this, value); }
+ static void _set_onabort(var _this, EventListener value) 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;
+
+ EventListener get onerror() { return _get_onerror(this); }
+ static EventListener _get_onerror(var _this) native;
+
+ void set onerror(EventListener value) { _set_onerror(this, value); }
+ static void _set_onerror(var _this, EventListener value) native;
+
void abort() {
_abort(this);
return;

Powered by Google App Engine
This is Rietveld 408576698