| Index: chrome/installer/setup/uninstall.cc
|
| diff --git a/chrome/installer/setup/uninstall.cc b/chrome/installer/setup/uninstall.cc
|
| index 2b7610ff954ad3c526b04ce078cf335099c78b0c..a7e7f6aba1dd4c44f922d1adaf5c45f83a9e9b0f 100644
|
| --- a/chrome/installer/setup/uninstall.cc
|
| +++ b/chrome/installer/setup/uninstall.cc
|
| @@ -64,7 +64,7 @@ namespace {
|
| void DeleteInstallTempDir(const base::FilePath& target_path) {
|
| base::FilePath temp_path(target_path.DirName().Append(
|
| installer::kInstallTempDir));
|
| - if (file_util::DirectoryExists(temp_path)) {
|
| + if (base::DirectoryExists(temp_path)) {
|
| installer::SelfCleaningTempDir temp_dir;
|
| if (!temp_dir.Initialize(target_path.DirName(),
|
| installer::kInstallTempDir) ||
|
|
|