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

Side by Side Diff: client/dom/generated/src/frog/FileWriter.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 FileWriter native "*FileWriter" { 2 class FileWriter native "*FileWriter" {
3 3
4 static final int DONE = 2; 4 static final int DONE = 2;
5 5
6 static final int INIT = 0; 6 static final int INIT = 0;
7 7
8 static final int WRITING = 1; 8 static final int WRITING = 1;
9 9
10 FileError error; 10 FileError error;
11 11
12 int length; 12 int length;
13 13
14 EventListener onabort;
15
16 EventListener onerror;
17
18 EventListener onprogress;
19
20 EventListener onwrite;
21
22 EventListener onwriteend;
23
24 EventListener onwritestart;
25
14 int position; 26 int position;
15 27
16 int readyState; 28 int readyState;
17 29
18 void abort() native; 30 void abort() native;
19 31
20 void seek(int position) native; 32 void seek(int position) native;
21 33
22 void truncate(int size) native; 34 void truncate(int size) native;
23 35
24 void write(Blob data) native; 36 void write(Blob data) native;
25 37
26 var dartObjectLocalStorage; 38 var dartObjectLocalStorage;
27 39
28 String get typeName() native; 40 String get typeName() native;
29 } 41 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/FileReader.dart ('k') | client/dom/generated/src/frog/IDBDatabase.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698