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

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

Issue 681823004: Standardize usage of virtual/override/final specifiers. (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_bubble_model_unittest.cc
diff --git a/chrome/browser/ui/passwords/manage_passwords_bubble_model_unittest.cc b/chrome/browser/ui/passwords/manage_passwords_bubble_model_unittest.cc
index b5ee97a9dbe590ce03143a931bbbceb078cd3374..301d3717e17dc47743ef225ec3e72056f5246876 100644
--- a/chrome/browser/ui/passwords/manage_passwords_bubble_model_unittest.cc
+++ b/chrome/browser/ui/passwords/manage_passwords_bubble_model_unittest.cc
@@ -25,7 +25,7 @@ class ManagePasswordsBubbleModelTest : public testing::Test {
content::WebContentsTester::CreateTestWebContents(&profile_,
NULL)) {}
- virtual void SetUp() override {
+ void SetUp() override {
// Create the test UIController here so that it's bound to
// |test_web_contents_| and therefore accessible to the model.
new ManagePasswordsUIControllerMock(test_web_contents_.get());
@@ -33,7 +33,7 @@ class ManagePasswordsBubbleModelTest : public testing::Test {
model_.reset(new ManagePasswordsBubbleModel(test_web_contents_.get()));
}
- virtual void TearDown() override { model_.reset(); }
+ void TearDown() override { model_.reset(); }
void PretendPasswordWaiting() {
model_->set_state(password_manager::ui::PENDING_PASSWORD_AND_BUBBLE_STATE);

Powered by Google App Engine
This is Rietveld 408576698