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

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

Issue 8473008: Generate constants for IDL classes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add frog dom 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;
5
6 static final int INIT = 0;
7
8 static final int WRITING = 1;
9
4 FileError error; 10 FileError error;
5 11
6 int length; 12 int length;
7 13
8 int position; 14 int position;
9 15
10 int readyState; 16 int readyState;
11 17
12 void abort() native; 18 void abort() native;
13 19
14 void seek(int position) native; 20 void seek(int position) native;
15 21
16 void truncate(int size) native; 22 void truncate(int size) native;
17 23
18 void write(Blob data) native; 24 void write(Blob data) native;
19 25
20 var dartObjectLocalStorage; 26 var dartObjectLocalStorage;
21 27
22 String get typeName() native; 28 String get typeName() native;
23 } 29 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/FileReader.dart ('k') | client/dom/generated/src/frog/Float32Array.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698