| Index: third_party/WebKit/Source/modules/filesystem/FileSystemCallbacks.h
|
| diff --git a/third_party/WebKit/Source/modules/filesystem/FileSystemCallbacks.h b/third_party/WebKit/Source/modules/filesystem/FileSystemCallbacks.h
|
| index ebb7dcb85e91a655ca8ee8d0ce5e6a716a14e564..c38196c562cb10e487216d651d91acd47ce063d3 100644
|
| --- a/third_party/WebKit/Source/modules/filesystem/FileSystemCallbacks.h
|
| +++ b/third_party/WebKit/Source/modules/filesystem/FileSystemCallbacks.h
|
| @@ -44,7 +44,7 @@ class DirectoryReaderBase;
|
| class EntriesCallback;
|
| class EntryCallback;
|
| class ErrorCallback;
|
| -class FileCallback;
|
| +class BlobCallback;
|
| class FileMetadata;
|
| class FileSystemCallback;
|
| class FileWriterBase;
|
| @@ -151,14 +151,14 @@ private:
|
|
|
| class SnapshotFileCallback final : public FileSystemCallbacksBase {
|
| public:
|
| - static PassOwnPtr<AsyncFileSystemCallbacks> create(DOMFileSystemBase*, const String& name, const KURL&, FileCallback*, ErrorCallback*, ExecutionContext*);
|
| + static PassOwnPtr<AsyncFileSystemCallbacks> create(DOMFileSystemBase*, const String& name, const KURL&, BlobCallback*, ErrorCallback*, ExecutionContext*);
|
| virtual void didCreateSnapshotFile(const FileMetadata&, PassRefPtr<BlobDataHandle> snapshot);
|
|
|
| private:
|
| - SnapshotFileCallback(DOMFileSystemBase*, const String& name, const KURL&, FileCallback*, ErrorCallback*, ExecutionContext*);
|
| + SnapshotFileCallback(DOMFileSystemBase*, const String& name, const KURL&, BlobCallback*, ErrorCallback*, ExecutionContext*);
|
| String m_name;
|
| KURL m_url;
|
| - Persistent<FileCallback> m_successCallback;
|
| + Persistent<BlobCallback> m_successCallback;
|
| };
|
|
|
| class VoidCallbacks final : public FileSystemCallbacksBase {
|
|
|