Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Unified Diff: storage/browser/fileapi/copy_or_move_operation_delegate.h

Issue 669603008: Standardize usage of virtual/override/final in storage/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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,
« no previous file with comments | « storage/browser/fileapi/async_file_util_adapter.h ('k') | storage/browser/fileapi/copy_or_move_operation_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698