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

Unified Diff: chrome/browser/notifications/message_center_settings_controller_unittest.cc

Issue 684613002: 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/notifications/message_center_settings_controller_unittest.cc
diff --git a/chrome/browser/notifications/message_center_settings_controller_unittest.cc b/chrome/browser/notifications/message_center_settings_controller_unittest.cc
index 75670ee3a4bb96b2643c6854a8f90784ca21aa67..d0e70d9a590ee814d7af5e81a425fd601aee18ea 100644
--- a/chrome/browser/notifications/message_center_settings_controller_unittest.cc
+++ b/chrome/browser/notifications/message_center_settings_controller_unittest.cc
@@ -25,16 +25,14 @@ class MessageCenterSettingsControllerTest : public testing::Test {
protected:
MessageCenterSettingsControllerTest()
: testing_profile_manager_(TestingBrowserProcess::GetGlobal()) {};
- virtual ~MessageCenterSettingsControllerTest() {};
+ ~MessageCenterSettingsControllerTest() override{};
base::FilePath GetProfilePath(const std::string& base_name) {
return testing_profile_manager_.profile_manager()->user_data_dir()
.AppendASCII(base_name);
}
- virtual void SetUp() override {
- ASSERT_TRUE(testing_profile_manager_.SetUp());
- }
+ void SetUp() override { ASSERT_TRUE(testing_profile_manager_.SetUp()); }
James Hawkins 2014/10/28 23:04:22 Undo this pull-up.
virtual void CreateProfile(const std::string& name) {
testing_profile_manager_.CreateTestingProfile(name);

Powered by Google App Engine
This is Rietveld 408576698