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

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

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment 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 ab97bd21b681330b298f240ae45d3c941f441257..2c1a2989d5163f6afdbc072c4e0fde8647885fc0 100644
--- a/client/dom/generated/src/frog/IDBTransaction.dart
+++ b/client/dom/generated/src/frog/IDBTransaction.dart
@@ -7,15 +7,21 @@ class IDBTransaction native "*IDBTransaction" {
static final int VERSION_CHANGE = 2;
- IDBDatabase db;
+ IDBDatabase get db() native "return this.db;";
- int mode;
+ int get mode() native "return this.mode;";
- EventListener onabort;
+ EventListener get onabort() native "return this.onabort;";
- EventListener oncomplete;
+ void set onabort(EventListener value) native "this.onabort = value;";
- EventListener onerror;
+ 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;";
void abort() native;
« no previous file with comments | « client/dom/generated/src/frog/IDBRequest.dart ('k') | client/dom/generated/src/frog/IDBVersionChangeEvent.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698