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

Unified Diff: chrome/browser/chromeos/file_system_provider/operations/operation.h

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h 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: chrome/browser/chromeos/file_system_provider/operations/operation.h
diff --git a/chrome/browser/chromeos/file_system_provider/operations/operation.h b/chrome/browser/chromeos/file_system_provider/operations/operation.h
index 205b9d4ff565d41437c95a565c2b4335a128d348..fa5f2dda49dfea8dd8166a873a7c5a91383b8f04 100644
--- a/chrome/browser/chromeos/file_system_provider/operations/operation.h
+++ b/chrome/browser/chromeos/file_system_provider/operations/operation.h
@@ -37,13 +37,13 @@ class Operation : public RequestManager::HandlerInterface {
virtual ~Operation();
// RequestManager::HandlerInterface overrides.
- virtual bool Execute(int request_id) OVERRIDE = 0;
+ virtual bool Execute(int request_id) override = 0;
virtual void OnSuccess(int request_id,
scoped_ptr<RequestValue> result,
- bool has_more) OVERRIDE = 0;
+ bool has_more) override = 0;
virtual void OnError(int request_id,
scoped_ptr<RequestValue> result,
- base::File::Error error) OVERRIDE = 0;
+ base::File::Error error) override = 0;
// Sets custom dispatchign event implementation for tests.
void SetDispatchEventImplForTesting(

Powered by Google App Engine
This is Rietveld 408576698