| Index: client/dom/generated/src/frog/FileWriter.dart
|
| diff --git a/client/dom/generated/src/frog/FileWriter.dart b/client/dom/generated/src/frog/FileWriter.dart
|
| index 4e93aad75087a5832589b67b2a88d9f7fcd169ed..2b8de6e4d3976f25742a2d4370d2a61feb28548c 100644
|
| --- a/client/dom/generated/src/frog/FileWriter.dart
|
| +++ b/client/dom/generated/src/frog/FileWriter.dart
|
| @@ -1,5 +1,5 @@
|
|
|
| -class FileWriter native "*FileWriter" {
|
| +class FileWriterJS implements FileWriter native "*FileWriter" {
|
|
|
| static final int DONE = 2;
|
|
|
| @@ -7,7 +7,7 @@ class FileWriter native "*FileWriter" {
|
|
|
| static final int WRITING = 1;
|
|
|
| - FileError get error() native "return this.error;";
|
| + FileErrorJS get error() native "return this.error;";
|
|
|
| int get length() native "return this.length;";
|
|
|
| @@ -45,7 +45,7 @@ class FileWriter native "*FileWriter" {
|
|
|
| void truncate(int size) native;
|
|
|
| - void write(Blob data) native;
|
| + void write(BlobJS data) native;
|
|
|
| var dartObjectLocalStorage;
|
|
|
|
|