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

Unified Diff: chrome/browser/ui/passwords/manage_passwords_ui_controller_unittest.cc

Issue 627043002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/ui/passwords/manage_passwords_ui_controller_unittest.cc
diff --git a/chrome/browser/ui/passwords/manage_passwords_ui_controller_unittest.cc b/chrome/browser/ui/passwords/manage_passwords_ui_controller_unittest.cc
index 0aa2a1e2fc0fa75e8a741e856ef7cd18f27813e6..6efdc3481d71c449ab4a68ef2190e98bbc38efaf 100644
--- a/chrome/browser/ui/passwords/manage_passwords_ui_controller_unittest.cc
+++ b/chrome/browser/ui/passwords/manage_passwords_ui_controller_unittest.cc
@@ -30,7 +30,7 @@ const int64 kQuickNavigationDelayInMS = 500;
class MockElapsedTimer : public base::ElapsedTimer {
public:
MockElapsedTimer() {}
- virtual base::TimeDelta Elapsed() const OVERRIDE { return delta_; }
+ virtual base::TimeDelta Elapsed() const override { return delta_; }
void Advance(int64 ms) { delta_ = base::TimeDelta::FromMilliseconds(ms); }
@@ -46,7 +46,7 @@ class ManagePasswordsUIControllerTest : public ChromeRenderViewHostTestHarness {
public:
ManagePasswordsUIControllerTest() {}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
ChromeRenderViewHostTestHarness::SetUp();
// Create the test UIController here so that it's bound to

Powered by Google App Engine
This is Rietveld 408576698