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

Unified Diff: storage/browser/fileapi/remove_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/remove_operation_delegate.h
diff --git a/storage/browser/fileapi/remove_operation_delegate.h b/storage/browser/fileapi/remove_operation_delegate.h
index 436a6417c9c1b28348b4c7522434e0ada2de09c0..fc83028223b3b7f4ce6abc34651af5a7d00caab2 100644
--- a/storage/browser/fileapi/remove_operation_delegate.h
+++ b/storage/browser/fileapi/remove_operation_delegate.h
@@ -19,14 +19,14 @@ class RemoveOperationDelegate : public RecursiveOperationDelegate {
virtual ~RemoveOperationDelegate();
// 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;
private:
void DidTryRemoveFile(base::File::Error error);
« no previous file with comments | « storage/browser/fileapi/quota/quota_backend_impl.h ('k') | storage/browser/fileapi/sandbox_file_stream_writer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698