| Index: base/file_util_unittest.cc
|
| diff --git a/base/file_util_unittest.cc b/base/file_util_unittest.cc
|
| index 5430a2d3106de5cdcf7c90fb326d5c2f4acb5c3f..4542af4c210f19be85e94ecbd89d6e5068542688 100644
|
| --- a/base/file_util_unittest.cc
|
| +++ b/base/file_util_unittest.cc
|
| @@ -142,7 +142,7 @@ const file_util::FileEnumerator::FileType FILES_AND_DIRECTORIES =
|
| // to be a PlatformTest
|
| class FileUtilTest : public PlatformTest {
|
| protected:
|
| - virtual void SetUp() {
|
| + virtual void SetUp() OVERRIDE {
|
| PlatformTest::SetUp();
|
| ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
|
| }
|
| @@ -1896,7 +1896,7 @@ TEST_F(FileUtilTest, IsDirectoryEmpty) {
|
| // with a common SetUp() method.
|
| class VerifyPathControlledByUserTest : public FileUtilTest {
|
| protected:
|
| - virtual void SetUp() {
|
| + virtual void SetUp() OVERRIDE {
|
| FileUtilTest::SetUp();
|
|
|
| // Create a basic structure used by each test.
|
|
|