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

Unified Diff: client/dom/generated/src/frog/IDBTransaction.dart

Issue 9312003: Use fields in hidden native DOM classes instead of getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also fix native Created 8 years, 11 months 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/frog/IDBTransaction.dart
diff --git a/client/dom/generated/src/frog/IDBTransaction.dart b/client/dom/generated/src/frog/IDBTransaction.dart
index fd4ee45a99e84d9a531cb656e1d909546a0654ff..64ca1316af34684898cf882610c6e564fa95a417 100644
--- a/client/dom/generated/src/frog/IDBTransaction.dart
+++ b/client/dom/generated/src/frog/IDBTransaction.dart
@@ -7,21 +7,15 @@ class _IDBTransactionJs extends _DOMTypeJs implements IDBTransaction native "*ID
static final int VERSION_CHANGE = 2;
- _IDBDatabaseJs get db() native "return this.db;";
+ final _IDBDatabaseJs db;
- int get mode() native "return this.mode;";
+ final int mode;
- EventListener get onabort() native "return this.onabort;";
+ EventListener onabort;
- void set onabort(EventListener value) native "this.onabort = value;";
+ EventListener oncomplete;
- EventListener get oncomplete() native "return this.oncomplete;";
-
- void set oncomplete(EventListener value) native "this.oncomplete = value;";
-
- EventListener get onerror() native "return this.onerror;";
-
- void set onerror(EventListener value) native "this.onerror = value;";
+ EventListener onerror;
void abort() native;

Powered by Google App Engine
This is Rietveld 408576698