| Index: webkit/browser/fileapi/async_file_util_adapter.h
|
| diff --git a/webkit/browser/fileapi/async_file_util_adapter.h b/webkit/browser/fileapi/async_file_util_adapter.h
|
| index 3a850282b31e5e8fe433f02ce9d9a7bba3c44b8f..2e4167da4976334af16cdb81ffbcaee87d395ba3 100644
|
| --- a/webkit/browser/fileapi/async_file_util_adapter.h
|
| +++ b/webkit/browser/fileapi/async_file_util_adapter.h
|
| @@ -37,64 +37,64 @@ class WEBKIT_STORAGE_EXPORT_PRIVATE AsyncFileUtilAdapter
|
|
|
| // AsyncFileUtil overrides.
|
| virtual bool CreateOrOpen(
|
| - FileSystemOperationContext* context,
|
| + scoped_ptr<FileSystemOperationContext> context,
|
| const FileSystemURL& url,
|
| int file_flags,
|
| const CreateOrOpenCallback& callback) OVERRIDE;
|
| virtual bool EnsureFileExists(
|
| - FileSystemOperationContext* context,
|
| + scoped_ptr<FileSystemOperationContext> context,
|
| const FileSystemURL& url,
|
| const EnsureFileExistsCallback& callback) OVERRIDE;
|
| virtual bool CreateDirectory(
|
| - FileSystemOperationContext* context,
|
| + scoped_ptr<FileSystemOperationContext> context,
|
| const FileSystemURL& url,
|
| bool exclusive,
|
| bool recursive,
|
| const StatusCallback& callback) OVERRIDE;
|
| virtual bool GetFileInfo(
|
| - FileSystemOperationContext* context,
|
| + scoped_ptr<FileSystemOperationContext> context,
|
| const FileSystemURL& url,
|
| const GetFileInfoCallback& callback) OVERRIDE;
|
| virtual bool ReadDirectory(
|
| - FileSystemOperationContext* context,
|
| + scoped_ptr<FileSystemOperationContext> context,
|
| const FileSystemURL& url,
|
| const ReadDirectoryCallback& callback) OVERRIDE;
|
| virtual bool Touch(
|
| - FileSystemOperationContext* context,
|
| + scoped_ptr<FileSystemOperationContext> context,
|
| const FileSystemURL& url,
|
| const base::Time& last_access_time,
|
| const base::Time& last_modified_time,
|
| const StatusCallback& callback) OVERRIDE;
|
| virtual bool Truncate(
|
| - FileSystemOperationContext* context,
|
| + scoped_ptr<FileSystemOperationContext> context,
|
| const FileSystemURL& url,
|
| int64 length,
|
| const StatusCallback& callback) OVERRIDE;
|
| virtual bool CopyFileLocal(
|
| - FileSystemOperationContext* context,
|
| + scoped_ptr<FileSystemOperationContext> context,
|
| const FileSystemURL& src_url,
|
| const FileSystemURL& dest_url,
|
| const StatusCallback& callback) OVERRIDE;
|
| virtual bool MoveFileLocal(
|
| - FileSystemOperationContext* context,
|
| + scoped_ptr<FileSystemOperationContext> context,
|
| const FileSystemURL& src_url,
|
| const FileSystemURL& dest_url,
|
| const StatusCallback& callback) OVERRIDE;
|
| virtual bool CopyInForeignFile(
|
| - FileSystemOperationContext* context,
|
| - const base::FilePath& src_file_path,
|
| - const FileSystemURL& dest_url,
|
| - const StatusCallback& callback) OVERRIDE;
|
| + scoped_ptr<FileSystemOperationContext> context,
|
| + const base::FilePath& src_file_path,
|
| + const FileSystemURL& dest_url,
|
| + const StatusCallback& callback) OVERRIDE;
|
| virtual bool DeleteFile(
|
| - FileSystemOperationContext* context,
|
| + scoped_ptr<FileSystemOperationContext> context,
|
| const FileSystemURL& url,
|
| const StatusCallback& callback) OVERRIDE;
|
| virtual bool DeleteDirectory(
|
| - FileSystemOperationContext* context,
|
| + scoped_ptr<FileSystemOperationContext> context,
|
| const FileSystemURL& url,
|
| const StatusCallback& callback) OVERRIDE;
|
| virtual bool CreateSnapshotFile(
|
| - FileSystemOperationContext* context,
|
| + scoped_ptr<FileSystemOperationContext> context,
|
| const FileSystemURL& url,
|
| const CreateSnapshotFileCallback& callback) OVERRIDE;
|
|
|
|
|