| Index: third_party/WebKit/Source/modules/filesystem/FileEntry.cpp
|
| diff --git a/third_party/WebKit/Source/modules/filesystem/FileEntry.cpp b/third_party/WebKit/Source/modules/filesystem/FileEntry.cpp
|
| index f224ecd315ffd57f55a12979220043bd7f9bbe97..7c5d12186a079e65bb57a64b720bb2450b2570e8 100644
|
| --- a/third_party/WebKit/Source/modules/filesystem/FileEntry.cpp
|
| +++ b/third_party/WebKit/Source/modules/filesystem/FileEntry.cpp
|
| @@ -30,8 +30,8 @@
|
|
|
| #include "modules/filesystem/FileEntry.h"
|
|
|
| +#include "core/fileapi/BlobCallback.h"
|
| #include "core/fileapi/File.h"
|
| -#include "core/fileapi/FileCallback.h"
|
| #include "modules/filesystem/DOMFileSystem.h"
|
| #include "modules/filesystem/ErrorCallback.h"
|
| #include "modules/filesystem/FileWriterCallback.h"
|
| @@ -48,7 +48,7 @@ void FileEntry::createWriter(FileWriterCallback* successCallback, ErrorCallback*
|
| filesystem()->createWriter(this, successCallback, errorCallback);
|
| }
|
|
|
| -void FileEntry::file(FileCallback* successCallback, ErrorCallback* errorCallback)
|
| +void FileEntry::file(BlobCallback* successCallback, ErrorCallback* errorCallback)
|
| {
|
| filesystem()->createFile(this, successCallback, errorCallback);
|
| }
|
|
|