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

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

Issue 8569017: Generate constructors for frog DOM (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Refresh the single file version Created 9 years, 1 month 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;
4
3 5
4 FileError error; 6 FileError error;
5 7
6 EventListener onabort; 8 EventListener onabort;
7 9
8 EventListener onerror; 10 EventListener onerror;
9 11
10 EventListener onload; 12 EventListener onload;
11 13
12 EventListener onloadend; 14 EventListener onloadend;
(...skipping 13 matching lines...) Expand all
26 void readAsBinaryString(Blob blob) native; 28 void readAsBinaryString(Blob blob) native;
27 29
28 void readAsDataURL(Blob blob) native; 30 void readAsDataURL(Blob blob) native;
29 31
30 void readAsText(Blob blob, [String encoding = null]) native; 32 void readAsText(Blob blob, [String encoding = null]) native;
31 33
32 var dartObjectLocalStorage; 34 var dartObjectLocalStorage;
33 35
34 String get typeName() native; 36 String get typeName() native;
35 } 37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698