| OLD | NEW |
| 1 | 1 |
| 2 class FileReader native "*FileReader" { | 2 class FileReader native "*FileReader" { |
| 3 FileReader() native; | 3 FileReader() native; |
| 4 | 4 |
| 5 | 5 |
| 6 static final int DONE = 2; |
| 7 |
| 8 static final int EMPTY = 0; |
| 9 |
| 10 static final int LOADING = 1; |
| 11 |
| 6 FileError error; | 12 FileError error; |
| 7 | 13 |
| 8 int readyState; | 14 int readyState; |
| 9 | 15 |
| 10 Object result; | 16 Object result; |
| 11 | 17 |
| 12 void abort() native; | 18 void abort() native; |
| 13 | 19 |
| 14 void readAsArrayBuffer(Blob blob) native; | 20 void readAsArrayBuffer(Blob blob) native; |
| 15 | 21 |
| 16 void readAsBinaryString(Blob blob) native; | 22 void readAsBinaryString(Blob blob) native; |
| 17 | 23 |
| 18 void readAsDataURL(Blob blob) native; | 24 void readAsDataURL(Blob blob) native; |
| 19 | 25 |
| 20 void readAsText(Blob blob, [String encoding = null]) native; | 26 void readAsText(Blob blob, [String encoding = null]) native; |
| 21 | 27 |
| 22 var dartObjectLocalStorage; | 28 var dartObjectLocalStorage; |
| 23 | 29 |
| 24 String get typeName() native; | 30 String get typeName() native; |
| 25 } | 31 } |
| OLD | NEW |