| Index: chrome/installer/util/self_cleaning_temp_dir.cc
|
| diff --git a/chrome/installer/util/self_cleaning_temp_dir.cc b/chrome/installer/util/self_cleaning_temp_dir.cc
|
| index 8b859261acb31a6be299d765b8fd51465fb58ae2..8fddbb9dccd2eb1ba52702924565ff55c968c1d4 100644
|
| --- a/chrome/installer/util/self_cleaning_temp_dir.cc
|
| +++ b/chrome/installer/util/self_cleaning_temp_dir.cc
|
| @@ -30,7 +30,7 @@ void SelfCleaningTempDir::GetTopDirToCreate(
|
| *base_dir = parent_dir;
|
| parent_dir = parent_dir.DirName();
|
| } while (parent_dir != *base_dir && !base::PathExists(parent_dir));
|
| - LOG_IF(WARNING, !file_util::DirectoryExists(parent_dir))
|
| + LOG_IF(WARNING, !base::DirectoryExists(parent_dir))
|
| << "A non-directory is at the base of the path leading to a desired "
|
| "temp directory location: " << parent_dir.value();
|
| }
|
|
|