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

Unified Diff: client/dom/generated/src/frog/IDBIndex.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/IDBIndex.dart
diff --git a/client/dom/generated/src/frog/IDBIndex.dart b/client/dom/generated/src/frog/IDBIndex.dart
index 5bb813a8ed6ee0aeb259735e35de484dd2fe50cf..d557d47cdf1e3c03641108a7735b7594e6d04cec 100644
--- a/client/dom/generated/src/frog/IDBIndex.dart
+++ b/client/dom/generated/src/frog/IDBIndex.dart
@@ -1,15 +1,15 @@
class IDBIndex native "*IDBIndex" {
- String keyPath;
+ String get keyPath() native "return this.keyPath;";
- bool multiEntry;
+ bool get multiEntry() native "return this.multiEntry;";
- String name;
+ String get name() native "return this.name;";
- IDBObjectStore objectStore;
+ IDBObjectStore get objectStore() native "return this.objectStore;";
- bool unique;
+ bool get unique() native "return this.unique;";
IDBRequest count([IDBKeyRange range = null]) native;
« no previous file with comments | « client/dom/generated/src/frog/IDBDatabaseException.dart ('k') | client/dom/generated/src/frog/IDBKeyRange.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698