| 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 4fc3818f2eb1c3c10d454beb84e1df1b863ec890..27bf25406cee42d8383c31a0c3419e652d4580db 100644
|
| --- a/webkit/browser/fileapi/copy_or_move_operation_delegate.h
|
| +++ b/webkit/browser/fileapi/copy_or_move_operation_delegate.h
|
| @@ -77,6 +77,23 @@ class CopyOrMoveOperationDelegate
|
| base::PlatformFileError error);
|
| void DidFinishCopy(
|
| const FileSystemURL& src,
|
| + const FileSystemURL& dest,
|
| + const StatusCallback& callback,
|
| + base::PlatformFileError error);
|
| + void PostWriteValidate(
|
| + const FileSystemURL& dest,
|
| + const StatusCallback& callback);
|
| + void DoPostWriteValidation(
|
| + const StatusCallback& callback,
|
| + base::PlatformFileError error,
|
| + const base::PlatformFileInfo& file_info,
|
| + const base::FilePath& platform_path,
|
| + const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref);
|
| + void DidPostCopyValidation(
|
| + const StatusCallback& callback,
|
| + base::PlatformFileError error);
|
| + void DidPostMoveValidation(
|
| + const FileSystemURL& src,
|
| const StatusCallback& callback,
|
| base::PlatformFileError error);
|
| void DidRemoveSourceForMove(
|
|
|