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

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

Issue 9346008: Remove vestigial constructors in Frog implementation classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 months 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 _FileReaderJs extends _DOMTypeJs implements FileReader native "*FileReader " { 2 class _FileReaderJs extends _DOMTypeJs implements FileReader native "*FileReader " {
3 FileReader() native;
4
5 3
6 static final int DONE = 2; 4 static final int DONE = 2;
7 5
8 static final int EMPTY = 0; 6 static final int EMPTY = 0;
9 7
10 static final int LOADING = 1; 8 static final int LOADING = 1;
11 9
12 final _FileErrorJs error; 10 final _FileErrorJs error;
13 11
14 EventListener onabort; 12 EventListener onabort;
(...skipping 21 matching lines...) Expand all
36 void readAsArrayBuffer(_BlobJs blob) native; 34 void readAsArrayBuffer(_BlobJs blob) native;
37 35
38 void readAsBinaryString(_BlobJs blob) native; 36 void readAsBinaryString(_BlobJs blob) native;
39 37
40 void readAsDataURL(_BlobJs blob) native; 38 void readAsDataURL(_BlobJs blob) native;
41 39
42 void readAsText(_BlobJs blob, [String encoding = null]) native; 40 void readAsText(_BlobJs blob, [String encoding = null]) native;
43 41
44 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 42 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
45 } 43 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/AudioContext.dart ('k') | client/dom/generated/src/frog/WebKitCSSMatrix.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698