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

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

Issue 9271031: Make DOMType the root of DOM implementation types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: x Created 8 years, 11 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 FileWriterJS implements FileWriter native "*FileWriter" { 2 class FileWriterJs extends DOMTypeJs implements 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 FileErrorJS get error() native "return this.error;"; 10 FileErrorJs get error() native "return this.error;";
11 11
12 int get length() native "return this.length;"; 12 int get length() native "return this.length;";
13 13
14 EventListener get onabort() native "return this.onabort;"; 14 EventListener get onabort() native "return this.onabort;";
15 15
16 void set onabort(EventListener value) native "this.onabort = value;"; 16 void set onabort(EventListener value) native "this.onabort = value;";
17 17
18 EventListener get onerror() native "return this.onerror;"; 18 EventListener get onerror() native "return this.onerror;";
19 19
20 void set onerror(EventListener value) native "this.onerror = value;"; 20 void set onerror(EventListener value) native "this.onerror = value;";
(...skipping 17 matching lines...) Expand all
38 int get position() native "return this.position;"; 38 int get position() native "return this.position;";
39 39
40 int get readyState() native "return this.readyState;"; 40 int get readyState() native "return this.readyState;";
41 41
42 void abort() native; 42 void abort() native;
43 43
44 void seek(int position) native; 44 void seek(int position) native;
45 45
46 void truncate(int size) native; 46 void truncate(int size) native;
47 47
48 void write(BlobJS data) native; 48 void write(BlobJs data) native;
49
50 var dartObjectLocalStorage;
51
52 String get typeName() native;
53 } 49 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/FileReaderSync.dart ('k') | client/dom/generated/src/frog/FileWriterSync.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698