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

Side by Side Diff: client/html/generated/html/frog/FileWriter.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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
(Empty)
1
2 class _FileWriterImpl implements FileWriter native "*FileWriter" {
3
4 static final int DONE = 2;
5
6 static final int INIT = 0;
7
8 static final int WRITING = 1;
9
10 final _FileErrorImpl error;
11
12 final int length;
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
26 final int position;
27
28 final int readyState;
29
30 void abort() native;
31
32 void seek(int position) native;
33
34 void truncate(int size) native;
35
36 void write(_BlobImpl data) native;
37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698