| Index: webkit/browser/fileapi/copy_or_move_operation_delegate.h
|
| diff --git a/webkit/browser/fileapi/copy_or_move_operation_delegate.h b/webkit/browser/fileapi/copy_or_move_operation_delegate.h
|
| index 2247c87202eaf6fbd7771a127aed35fbdb051160..bb0c1f96ebce02dc361d6828f8a723c21a8be2ae 100644
|
| --- a/webkit/browser/fileapi/copy_or_move_operation_delegate.h
|
| +++ b/webkit/browser/fileapi/copy_or_move_operation_delegate.h
|
| @@ -119,26 +119,26 @@ class CopyOrMoveOperationDelegate
|
| const FileSystemURL& dest_url,
|
| const StatusCallback& callback,
|
| CopyOrMoveImpl* impl,
|
| - base::PlatformFileError error);
|
| + base::File::Error error);
|
| void DidTryRemoveDestRoot(const StatusCallback& callback,
|
| - base::PlatformFileError error);
|
| + base::File::Error error);
|
| void ProcessDirectoryInternal(const FileSystemURL& src_url,
|
| const FileSystemURL& dest_url,
|
| const StatusCallback& callback);
|
| void DidCreateDirectory(const FileSystemURL& src_url,
|
| const FileSystemURL& dest_url,
|
| const StatusCallback& callback,
|
| - base::PlatformFileError error);
|
| + base::File::Error error);
|
| void PostProcessDirectoryAfterGetMetadata(
|
| const FileSystemURL& src_url,
|
| const StatusCallback& callback,
|
| - base::PlatformFileError error,
|
| - const base::PlatformFileInfo& file_info);
|
| + base::File::Error error,
|
| + const base::File::Info& file_info);
|
| void PostProcessDirectoryAfterTouchFile(const FileSystemURL& src_url,
|
| const StatusCallback& callback,
|
| - base::PlatformFileError error);
|
| + base::File::Error error);
|
| void DidRemoveSourceForMove(const StatusCallback& callback,
|
| - base::PlatformFileError error);
|
| + base::File::Error error);
|
|
|
| void OnCopyFileProgress(const FileSystemURL& src_url, int64 size);
|
| FileSystemURL CreateDestURL(const FileSystemURL& src_url) const;
|
|
|