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

Side by Side Diff: client/dom/generated/src/frog/FileReader.dart

Issue 8473008: Generate constants for IDL classes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add frog dom Created 9 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/FileException.dart ('k') | client/dom/generated/src/frog/FileWriter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698