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

Unified Diff: client/dom/generated/src/frog/IDBCursor.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
« no previous file with comments | « client/dom/generated/src/frog/History.dart ('k') | client/dom/generated/src/frog/IDBCursorWithValue.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/IDBCursor.dart
diff --git a/client/dom/generated/src/frog/IDBCursor.dart b/client/dom/generated/src/frog/IDBCursor.dart
index 8a4eb7b3d809856d633ee282e965f7212eda845b..2eaa01de4ec30fd1a5f901e92094c16b49a4330d 100644
--- a/client/dom/generated/src/frog/IDBCursor.dart
+++ b/client/dom/generated/src/frog/IDBCursor.dart
@@ -9,13 +9,13 @@ class IDBCursor native "*IDBCursor" {
static final int PREV_NO_DUPLICATE = 3;
- int direction;
+ int get direction() native "return this.direction;";
- IDBKey key;
+ IDBKey get key() native "return this.key;";
- IDBKey primaryKey;
+ IDBKey get primaryKey() native "return this.primaryKey;";
- IDBAny source;
+ IDBAny get source() native "return this.source;";
void continueFunction([IDBKey key = null]) native;
« no previous file with comments | « client/dom/generated/src/frog/History.dart ('k') | client/dom/generated/src/frog/IDBCursorWithValue.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698