| Index: chrome/browser/chromeos/file_system_provider/fileapi/provider_async_file_util.h
|
| diff --git a/chrome/browser/chromeos/file_system_provider/fileapi/provider_async_file_util.h b/chrome/browser/chromeos/file_system_provider/fileapi/provider_async_file_util.h
|
| index a60df564089d5181ebc19b36f0b6db0e78567d57..90c875fc7852d9d469e3450cb7df43924c9b91ea 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/fileapi/provider_async_file_util.h
|
| +++ b/chrome/browser/chromeos/file_system_provider/fileapi/provider_async_file_util.h
|
| @@ -16,7 +16,7 @@ class FileSystemInterface;
|
|
|
| namespace internal {
|
|
|
| -// The implementation of fileapi::AsyncFileUtil for provided file systems. It is
|
| +// The implementation of storage::AsyncFileUtil for provided file systems. It is
|
| // created one per Chrome process. It is responsible for routing calls to the
|
| // correct profile, and then to the correct profided file system.
|
| //
|
| @@ -26,77 +26,77 @@ namespace internal {
|
| // See: https://code.google.com/p/gyp/issues/detail?id=384
|
| //
|
| // All of the methods should be called on the IO thread.
|
| -class ProviderAsyncFileUtil : public fileapi::AsyncFileUtil {
|
| +class ProviderAsyncFileUtil : public storage::AsyncFileUtil {
|
| public:
|
| ProviderAsyncFileUtil();
|
| virtual ~ProviderAsyncFileUtil();
|
|
|
| - // fileapi::AsyncFileUtil overrides.
|
| + // storage::AsyncFileUtil overrides.
|
| 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,
|
| + 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<fileapi::FileSystemOperationContext> context,
|
| - const fileapi::FileSystemURL& url,
|
| + 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:
|
|
|