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

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

Issue 8894029: Generate EventListener attributes of non-EventTarget classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge 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; 6 static final int DONE = 2;
7 7
8 static final int EMPTY = 0; 8 static final int EMPTY = 0;
9 9
10 static final int LOADING = 1; 10 static final int LOADING = 1;
11 11
12 FileError error; 12 FileError error;
13 13
14 EventListener onabort;
15
16 EventListener onerror;
17
18 EventListener onload;
19
20 EventListener onloadend;
21
22 EventListener onloadstart;
23
24 EventListener onprogress;
25
14 int readyState; 26 int readyState;
15 27
16 Object result; 28 Object result;
17 29
18 void abort() native; 30 void abort() native;
19 31
20 void readAsArrayBuffer(Blob blob) native; 32 void readAsArrayBuffer(Blob blob) native;
21 33
22 void readAsBinaryString(Blob blob) native; 34 void readAsBinaryString(Blob blob) native;
23 35
24 void readAsDataURL(Blob blob) native; 36 void readAsDataURL(Blob blob) native;
25 37
26 void readAsText(Blob blob, [String encoding = null]) native; 38 void readAsText(Blob blob, [String encoding = null]) native;
27 39
28 var dartObjectLocalStorage; 40 var dartObjectLocalStorage;
29 41
30 String get typeName() native; 42 String get typeName() native;
31 } 43 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/DedicatedWorkerContext.dart ('k') | client/dom/generated/src/frog/FileWriter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698