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

Unified Diff: components/password_manager/content/browser/content_credential_manager_dispatcher_unittest.cc

Issue 684513002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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: components/password_manager/content/browser/content_credential_manager_dispatcher_unittest.cc
diff --git a/components/password_manager/content/browser/content_credential_manager_dispatcher_unittest.cc b/components/password_manager/content/browser/content_credential_manager_dispatcher_unittest.cc
index 2b1665695b92beb27e167ad71a87d4b0f1a66474..bdefff8df7d1ffe8717ef33622e3202997ac8f50 100644
--- a/components/password_manager/content/browser/content_credential_manager_dispatcher_unittest.cc
+++ b/components/password_manager/content/browser/content_credential_manager_dispatcher_unittest.cc
@@ -79,7 +79,7 @@ class ContentCredentialManagerDispatcherTest
public:
ContentCredentialManagerDispatcherTest() {}
- virtual void SetUp() override {
+ void SetUp() override {
content::RenderViewHostTestHarness::SetUp();
store_ = new TestPasswordStore;
client_.reset(new TestPasswordManagerClient(store_.get()));
@@ -99,7 +99,7 @@ class ContentCredentialManagerDispatcherTest
EXPECT_TRUE(store_->IsEmpty());
}
- virtual void TearDown() override {
+ void TearDown() override {
store_->Shutdown();
content::RenderViewHostTestHarness::TearDown();
}

Powered by Google App Engine
This is Rietveld 408576698