| OLD | NEW |
| 1 | 1 |
| 2 class FileJs extends BlobJs implements File native "*File" { | 2 class _FileJs extends _BlobJs implements File native "*File" { |
| 3 | 3 |
| 4 String get fileName() native "return this.fileName;"; | 4 String get fileName() native "return this.fileName;"; |
| 5 | 5 |
| 6 int get fileSize() native "return this.fileSize;"; | 6 int get fileSize() native "return this.fileSize;"; |
| 7 | 7 |
| 8 Date get lastModifiedDate() native "return this.lastModifiedDate;"; | 8 Date get lastModifiedDate() native "return this.lastModifiedDate;"; |
| 9 | 9 |
| 10 String get name() native "return this.name;"; | 10 String get name() native "return this.name;"; |
| 11 | 11 |
| 12 String get webkitRelativePath() native "return this.webkitRelativePath;"; | 12 String get webkitRelativePath() native "return this.webkitRelativePath;"; |
| 13 } | 13 } |
| OLD | NEW |