Chromium Code Reviews| Index: base/files/file_path_unittest.cc |
| diff --git a/base/files/file_path_unittest.cc b/base/files/file_path_unittest.cc |
| index fa7627c2f9be81be7394771c2d6e99dd05df47be..29ffafc0ddbb695d5f9755520ddb1347cc647a5e 100644 |
| --- a/base/files/file_path_unittest.cc |
| +++ b/base/files/file_path_unittest.cc |
| @@ -50,12 +50,8 @@ struct UTF8TestData { |
| // to be a PlatformTest |
| class FilePathTest : public PlatformTest { |
| protected: |
| - virtual void SetUp() OVERRIDE { |
| - PlatformTest::SetUp(); |
| - } |
| - virtual void TearDown() OVERRIDE { |
| - PlatformTest::TearDown(); |
| - } |
| + void SetUp() override { PlatformTest::SetUp(); } |
|
pauljensen
2014/10/05 02:59:36
Do we want to be reformatting like this?
Mostyn Bramley-Moore
2014/10/05 07:26:31
No- after earlier discussion in this CL, we chose
|
| + void TearDown() override { PlatformTest::TearDown(); } |
| }; |
| TEST_F(FilePathTest, DirName) { |