| Index: base/file_util.cc
|
| diff --git a/base/file_util.cc b/base/file_util.cc
|
| index 9c3381e59404d3733a4f6a2c2872f8b5709a2bab..e9f1d4e61f93bb910e8925b71d00fd6d2d51d300 100644
|
| --- a/base/file_util.cc
|
| +++ b/base/file_util.cc
|
| @@ -160,7 +160,7 @@ bool ReadFileToString(const FilePath& path, std::string* contents) {
|
|
|
| bool IsDirectoryEmpty(const FilePath& dir_path) {
|
| FileEnumerator files(dir_path, false,
|
| - static_cast<FileEnumerator::FILE_TYPE>(
|
| + static_cast<FileEnumerator::FileType>(
|
| FileEnumerator::FILES | FileEnumerator::DIRECTORIES));
|
| if (files.Next().value().empty())
|
| return true;
|
|
|