| Index: storage/browser/fileapi/copy_or_move_operation_delegate.h
|
| diff --git a/storage/browser/fileapi/copy_or_move_operation_delegate.h b/storage/browser/fileapi/copy_or_move_operation_delegate.h
|
| index 81731179665b8c2b2bf6be49819215c58755bd52..7860e1e95f19d3d0facf3f13a6def34294c9f194 100644
|
| --- a/storage/browser/fileapi/copy_or_move_operation_delegate.h
|
| +++ b/storage/browser/fileapi/copy_or_move_operation_delegate.h
|
| @@ -98,21 +98,20 @@ class CopyOrMoveOperationDelegate
|
| CopyOrMoveOption option,
|
| const CopyProgressCallback& progress_callback,
|
| const StatusCallback& callback);
|
| - virtual ~CopyOrMoveOperationDelegate();
|
| + ~CopyOrMoveOperationDelegate() override;
|
|
|
| // RecursiveOperationDelegate overrides:
|
| - virtual void Run() override;
|
| - virtual void RunRecursively() override;
|
| - virtual void ProcessFile(const FileSystemURL& url,
|
| - const StatusCallback& callback) override;
|
| - virtual void ProcessDirectory(const FileSystemURL& url,
|
| - const StatusCallback& callback) override;
|
| - virtual void PostProcessDirectory(const FileSystemURL& url,
|
| - const StatusCallback& callback) override;
|
| -
|
| + void Run() override;
|
| + void RunRecursively() override;
|
| + void ProcessFile(const FileSystemURL& url,
|
| + const StatusCallback& callback) override;
|
| + void ProcessDirectory(const FileSystemURL& url,
|
| + const StatusCallback& callback) override;
|
| + void PostProcessDirectory(const FileSystemURL& url,
|
| + const StatusCallback& callback) override;
|
|
|
| protected:
|
| - virtual void OnCancel() override;
|
| + void OnCancel() override;
|
|
|
| private:
|
| void DidCopyOrMoveFile(const FileSystemURL& src_url,
|
|
|