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

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

Issue 624063003: Replacing the OVERRIDE with override and FINAL with final in storage (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed the error 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 0b97d1c9ca14f1e26b2bdcac829b29a2c0562d55..81731179665b8c2b2bf6be49819215c58755bd52 100644
--- a/storage/browser/fileapi/copy_or_move_operation_delegate.h
+++ b/storage/browser/fileapi/copy_or_move_operation_delegate.h
@@ -101,18 +101,18 @@ class CopyOrMoveOperationDelegate
virtual ~CopyOrMoveOperationDelegate();
// RecursiveOperationDelegate overrides:
- virtual void Run() OVERRIDE;
- virtual void RunRecursively() OVERRIDE;
+ virtual void Run() override;
+ virtual void RunRecursively() override;
virtual void ProcessFile(const FileSystemURL& url,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void ProcessDirectory(const FileSystemURL& url,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void PostProcessDirectory(const FileSystemURL& url,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
protected:
- virtual void OnCancel() OVERRIDE;
+ virtual 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