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

Unified Diff: chrome/browser/chromeos/file_system_provider/operations/move_entry.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/move_entry.h
diff --git a/chrome/browser/chromeos/file_system_provider/operations/move_entry.h b/chrome/browser/chromeos/file_system_provider/operations/move_entry.h
index 4ccb64ba299feadc30457a2c96d27670c716eb08..d48b64c46880fa7292148e225dfef487cd0e9ac4 100644
--- a/chrome/browser/chromeos/file_system_provider/operations/move_entry.h
+++ b/chrome/browser/chromeos/file_system_provider/operations/move_entry.h
@@ -36,13 +36,13 @@ class MoveEntry : public Operation {
virtual ~MoveEntry();
// Operation overrides.
- virtual bool Execute(int request_id) OVERRIDE;
+ virtual bool Execute(int request_id) override;
virtual void OnSuccess(int request_id,
scoped_ptr<RequestValue> result,
- bool has_more) OVERRIDE;
+ bool has_more) override;
virtual void OnError(int request_id,
scoped_ptr<RequestValue> result,
- base::File::Error error) OVERRIDE;
+ base::File::Error error) override;
private:
base::FilePath source_path_;

Powered by Google App Engine
This is Rietveld 408576698