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

Unified Diff: client/dom/generated/src/frog/File.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/EventSource.dart ('k') | client/dom/generated/src/frog/FileError.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/File.dart
diff --git a/client/dom/generated/src/frog/File.dart b/client/dom/generated/src/frog/File.dart
index ed3eea9a9ee7e349646d456c03cd2f22fa8a354f..d6edca568175ed5a2fe2d76ea60a56e5e18d047c 100644
--- a/client/dom/generated/src/frog/File.dart
+++ b/client/dom/generated/src/frog/File.dart
@@ -1,13 +1,13 @@
class File extends Blob native "*File" {
- String fileName;
+ String get fileName() native "return this.fileName;";
- int fileSize;
+ int get fileSize() native "return this.fileSize;";
- Date lastModifiedDate;
+ Date get lastModifiedDate() native "return this.lastModifiedDate;";
- String name;
+ String get name() native "return this.name;";
- String webkitRelativePath;
+ String get webkitRelativePath() native "return this.webkitRelativePath;";
}
« no previous file with comments | « client/dom/generated/src/frog/EventSource.dart ('k') | client/dom/generated/src/frog/FileError.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698