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/IDBDatabase.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/IDBDatabase.dart
diff --git a/client/dom/generated/src/frog/IDBDatabase.dart b/client/dom/generated/src/frog/IDBDatabase.dart
index b9e6a5ec152a094b14322d489a7de1ac87f6f4a3..07a34fb9faba9eab3c9bd9ac37b2a0645a17a6b6 100644
--- a/client/dom/generated/src/frog/IDBDatabase.dart
+++ b/client/dom/generated/src/frog/IDBDatabase.dart
@@ -1,15 +1,21 @@
class IDBDatabase native "*IDBDatabase" {
- String name;
+ String get name() native "return this.name;";
- EventListener onabort;
+ EventListener get onabort() native "return this.onabort;";
- EventListener onerror;
+ void set onabort(EventListener value) native "this.onabort = value;";
- EventListener onversionchange;
+ EventListener get onerror() native "return this.onerror;";
- String version;
+ void set onerror(EventListener value) native "this.onerror = value;";
+
+ EventListener get onversionchange() native "return this.onversionchange;";
+
+ void set onversionchange(EventListener value) native "this.onversionchange = value;";
+
+ String get version() native "return this.version;";
void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
« no previous file with comments | « client/dom/generated/src/frog/IDBCursorWithValue.dart ('k') | client/dom/generated/src/frog/IDBDatabaseError.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698