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

Unified Diff: chrome/browser/undo/undo_manager_test.cc

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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
« no previous file with comments | « chrome/browser/undo/bookmark_undo_service_test.cc ('k') | chrome/browser/unload_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/undo/undo_manager_test.cc
diff --git a/chrome/browser/undo/undo_manager_test.cc b/chrome/browser/undo/undo_manager_test.cc
index 4ed7d498ac36d9890980635b4892102903a70ae8..1699264943dac21dcda13efb359cb383481949f4 100644
--- a/chrome/browser/undo/undo_manager_test.cc
+++ b/chrome/browser/undo/undo_manager_test.cc
@@ -39,9 +39,9 @@ class TestUndoOperation : public UndoOperation {
virtual ~TestUndoOperation();
// UndoOperation:
- virtual void Undo() OVERRIDE;
- virtual int GetUndoLabelId() const OVERRIDE;
- virtual int GetRedoLabelId() const OVERRIDE;
+ virtual void Undo() override;
+ virtual int GetUndoLabelId() const override;
+ virtual int GetRedoLabelId() const override;
private:
TestUndoService* undo_service_;
@@ -104,7 +104,7 @@ class TestObserver : public UndoManagerObserver {
// Returns the number of state change callbacks
int state_change_count() { return state_change_count_; }
- virtual void OnUndoManagerStateChange() OVERRIDE { ++state_change_count_; }
+ virtual void OnUndoManagerStateChange() override { ++state_change_count_; }
private:
int state_change_count_;
« no previous file with comments | « chrome/browser/undo/bookmark_undo_service_test.cc ('k') | chrome/browser/unload_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698