| Index: chrome/browser/local_discovery/storage/privet_filesystem_async_util.h
|
| diff --git a/chrome/browser/local_discovery/storage/privet_filesystem_async_util.h b/chrome/browser/local_discovery/storage/privet_filesystem_async_util.h
|
| index 1dd121e5862b904a5bc9444040983296516aaa57..5a3b6f8f22852f08c1b16f304ce407ca443eb2be 100644
|
| --- a/chrome/browser/local_discovery/storage/privet_filesystem_async_util.h
|
| +++ b/chrome/browser/local_discovery/storage/privet_filesystem_async_util.h
|
| @@ -8,82 +8,80 @@
|
| #include "chrome/browser/local_discovery/storage/privet_filesystem_attribute_cache.h"
|
| #include "chrome/browser/local_discovery/storage/privet_filesystem_operations.h"
|
| #include "content/public/browser/browser_context.h"
|
| -#include "webkit/browser/fileapi/async_file_util.h"
|
| +#include "storage/browser/fileapi/async_file_util.h"
|
|
|
| namespace local_discovery {
|
|
|
| -class PrivetFileSystemAsyncUtil : public fileapi::AsyncFileUtil {
|
| +class PrivetFileSystemAsyncUtil : public storage::AsyncFileUtil {
|
| public:
|
| explicit PrivetFileSystemAsyncUtil(content::BrowserContext* browser_context);
|
| virtual ~PrivetFileSystemAsyncUtil();
|
|
|
| virtual void CreateOrOpen(
|
| - scoped_ptr<fileapi::FileSystemOperationContext> context,
|
| - const fileapi::FileSystemURL& url,
|
| + scoped_ptr<storage::FileSystemOperationContext> context,
|
| + const storage::FileSystemURL& url,
|
| int file_flags,
|
| const CreateOrOpenCallback& callback) OVERRIDE;
|
| virtual void EnsureFileExists(
|
| - scoped_ptr<fileapi::FileSystemOperationContext> context,
|
| - const fileapi::FileSystemURL& url,
|
| + scoped_ptr<storage::FileSystemOperationContext> context,
|
| + const storage::FileSystemURL& url,
|
| const EnsureFileExistsCallback& callback) OVERRIDE;
|
| virtual void CreateDirectory(
|
| - scoped_ptr<fileapi::FileSystemOperationContext> context,
|
| - const fileapi::FileSystemURL& url,
|
| + scoped_ptr<storage::FileSystemOperationContext> context,
|
| + const storage::FileSystemURL& url,
|
| bool exclusive,
|
| bool recursive,
|
| const StatusCallback& callback) OVERRIDE;
|
| virtual void GetFileInfo(
|
| - scoped_ptr<fileapi::FileSystemOperationContext> context,
|
| - const fileapi::FileSystemURL& url,
|
| + scoped_ptr<storage::FileSystemOperationContext> context,
|
| + const storage::FileSystemURL& url,
|
| const GetFileInfoCallback& callback) OVERRIDE;
|
| virtual void ReadDirectory(
|
| - scoped_ptr<fileapi::FileSystemOperationContext> context,
|
| - const fileapi::FileSystemURL& url,
|
| + scoped_ptr<storage::FileSystemOperationContext> context,
|
| + const storage::FileSystemURL& url,
|
| const ReadDirectoryCallback& callback) OVERRIDE;
|
| - virtual void Touch(
|
| - scoped_ptr<fileapi::FileSystemOperationContext> context,
|
| - const fileapi::FileSystemURL& url,
|
| - const base::Time& last_access_time,
|
| - const base::Time& last_modified_time,
|
| - const StatusCallback& callback) OVERRIDE;
|
| - virtual void Truncate(
|
| - scoped_ptr<fileapi::FileSystemOperationContext> context,
|
| - const fileapi::FileSystemURL& url,
|
| - int64 length,
|
| - const StatusCallback& callback) OVERRIDE;
|
| + virtual void Touch(scoped_ptr<storage::FileSystemOperationContext> context,
|
| + const storage::FileSystemURL& url,
|
| + const base::Time& last_access_time,
|
| + const base::Time& last_modified_time,
|
| + const StatusCallback& callback) OVERRIDE;
|
| + virtual void Truncate(scoped_ptr<storage::FileSystemOperationContext> context,
|
| + const storage::FileSystemURL& url,
|
| + int64 length,
|
| + const StatusCallback& callback) OVERRIDE;
|
| virtual void CopyFileLocal(
|
| - scoped_ptr<fileapi::FileSystemOperationContext> context,
|
| - const fileapi::FileSystemURL& src_url,
|
| - const fileapi::FileSystemURL& dest_url,
|
| + scoped_ptr<storage::FileSystemOperationContext> context,
|
| + const storage::FileSystemURL& src_url,
|
| + const storage::FileSystemURL& dest_url,
|
| CopyOrMoveOption option,
|
| const CopyFileProgressCallback& progress_callback,
|
| const StatusCallback& callback) OVERRIDE;
|
| virtual void MoveFileLocal(
|
| - scoped_ptr<fileapi::FileSystemOperationContext> context,
|
| - const fileapi::FileSystemURL& src_url,
|
| - const fileapi::FileSystemURL& dest_url,
|
| + scoped_ptr<storage::FileSystemOperationContext> context,
|
| + const storage::FileSystemURL& src_url,
|
| + const storage::FileSystemURL& dest_url,
|
| CopyOrMoveOption option,
|
| const StatusCallback& callback) OVERRIDE;
|
| virtual void CopyInForeignFile(
|
| - scoped_ptr<fileapi::FileSystemOperationContext> context,
|
| + scoped_ptr<storage::FileSystemOperationContext> context,
|
| const base::FilePath& src_file_path,
|
| - const fileapi::FileSystemURL& dest_url,
|
| + const storage::FileSystemURL& dest_url,
|
| const StatusCallback& callback) OVERRIDE;
|
| virtual void DeleteFile(
|
| - scoped_ptr<fileapi::FileSystemOperationContext> context,
|
| - const fileapi::FileSystemURL& url,
|
| + scoped_ptr<storage::FileSystemOperationContext> context,
|
| + const storage::FileSystemURL& url,
|
| const StatusCallback& callback) OVERRIDE;
|
| virtual void DeleteDirectory(
|
| - scoped_ptr<fileapi::FileSystemOperationContext> context,
|
| - const fileapi::FileSystemURL& url,
|
| + scoped_ptr<storage::FileSystemOperationContext> context,
|
| + const storage::FileSystemURL& url,
|
| const StatusCallback& callback) OVERRIDE;
|
| virtual void DeleteRecursively(
|
| - scoped_ptr<fileapi::FileSystemOperationContext> context,
|
| - const fileapi::FileSystemURL& url,
|
| + scoped_ptr<storage::FileSystemOperationContext> context,
|
| + const storage::FileSystemURL& url,
|
| const StatusCallback& callback) OVERRIDE;
|
| virtual void CreateSnapshotFile(
|
| - scoped_ptr<fileapi::FileSystemOperationContext> context,
|
| - const fileapi::FileSystemURL& url,
|
| + scoped_ptr<storage::FileSystemOperationContext> context,
|
| + const storage::FileSystemURL& url,
|
| const CreateSnapshotFileCallback& callback) OVERRIDE;
|
|
|
| private:
|
|
|