| Index: chrome/service/service_process_prefs_unittest.cc
|
| diff --git a/chrome/service/service_process_prefs_unittest.cc b/chrome/service/service_process_prefs_unittest.cc
|
| index c958fd29fd8a93850128a04bc3001163070ff637..73284ca06f17d4b6351baf83b7c630733d077df7 100644
|
| --- a/chrome/service/service_process_prefs_unittest.cc
|
| +++ b/chrome/service/service_process_prefs_unittest.cc
|
| @@ -13,7 +13,7 @@
|
|
|
| class ServiceProcessPrefsTest : public testing::Test {
|
| protected:
|
| - virtual void SetUp() override {
|
| + void SetUp() override {
|
| ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
|
|
|
| prefs_.reset(new ServiceProcessPrefs(
|
| @@ -21,9 +21,7 @@ class ServiceProcessPrefsTest : public testing::Test {
|
| message_loop_.message_loop_proxy().get()));
|
| }
|
|
|
| - virtual void TearDown() override {
|
| - prefs_.reset();
|
| - }
|
| + void TearDown() override { prefs_.reset(); }
|
|
|
| // The path to temporary directory used to contain the test operations.
|
| base::ScopedTempDir temp_dir_;
|
|
|