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

Unified Diff: chrome/browser/ui/passwords/password_manager_presenter_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/password_manager_presenter_unittest.cc
diff --git a/chrome/browser/ui/passwords/password_manager_presenter_unittest.cc b/chrome/browser/ui/passwords/password_manager_presenter_unittest.cc
index 1cee3092e502b9b5c821f1dce7b020c307dee802..62722a2e2bb443e2580e9dda9bf65ada43e3782d 100644
--- a/chrome/browser/ui/passwords/password_manager_presenter_unittest.cc
+++ b/chrome/browser/ui/passwords/password_manager_presenter_unittest.cc
@@ -23,9 +23,9 @@ class MockPasswordUIView : public PasswordUIView {
password_manager_presenter_.Initialize();
}
virtual ~MockPasswordUIView() {}
- virtual Profile* GetProfile() OVERRIDE;
+ virtual Profile* GetProfile() override;
#if !defined(OS_ANDROID)
- virtual gfx::NativeWindow GetNativeWindow() OVERRIDE;
+ virtual gfx::NativeWindow GetNativeWindow() override;
#endif
MOCK_METHOD2(ShowPassword, void(size_t, const base::string16&));
MOCK_METHOD2(SetPasswordList,
@@ -53,7 +53,7 @@ class PasswordManagerPresenterTest : public testing::Test {
PasswordManagerPresenterTest() {}
virtual ~PasswordManagerPresenterTest() {}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
PasswordStoreFactory::GetInstance()->SetTestingFactory(
&profile_, MockPasswordStoreService::Build);
mock_controller_.reset(new MockPasswordUIView(&profile_));

Powered by Google App Engine
This is Rietveld 408576698