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

Unified Diff: client/dom/generated/src/frog/IDBRequest.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/IDBRequest.dart
diff --git a/client/dom/generated/src/frog/IDBRequest.dart b/client/dom/generated/src/frog/IDBRequest.dart
index 2c5b9efe9238705299aebc007ab4297cb347300b..8f3a01d93fe2c317066bef79a8b764a62707fad5 100644
--- a/client/dom/generated/src/frog/IDBRequest.dart
+++ b/client/dom/generated/src/frog/IDBRequest.dart
@@ -5,21 +5,25 @@ class IDBRequest native "*IDBRequest" {
static final int LOADING = 1;
- int errorCode;
+ int get errorCode() native "return this.errorCode;";
- EventListener onerror;
+ EventListener get onerror() native "return this.onerror;";
- EventListener onsuccess;
+ void set onerror(EventListener value) native "this.onerror = value;";
- int readyState;
+ EventListener get onsuccess() native "return this.onsuccess;";
- IDBAny result;
+ void set onsuccess(EventListener value) native "this.onsuccess = value;";
- IDBAny source;
+ int get readyState() native "return this.readyState;";
- IDBTransaction transaction;
+ IDBAny get result() native "return this.result;";
- String webkitErrorMessage;
+ IDBAny get source() native "return this.source;";
+
+ IDBTransaction get transaction() native "return this.transaction;";
+
+ String get webkitErrorMessage() native "return this.webkitErrorMessage;";
void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
« no previous file with comments | « client/dom/generated/src/frog/IDBObjectStore.dart ('k') | client/dom/generated/src/frog/IDBTransaction.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698