diff options
Diffstat (limited to 'chrome/installer/util/self_cleaning_temp_dir.cc')
-rw-r--r-- | chrome/installer/util/self_cleaning_temp_dir.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/installer/util/self_cleaning_temp_dir.cc b/chrome/installer/util/self_cleaning_temp_dir.cc index cdb61e8..bb2fd6c 100644 --- a/chrome/installer/util/self_cleaning_temp_dir.cc +++ b/chrome/installer/util/self_cleaning_temp_dir.cc @@ -78,7 +78,7 @@ bool SelfCleaningTempDir::Delete() { // First try to recursively delete the leaf directory managed by our // base::ScopedTempDir. - if (!file_util::Delete(path(), true)) { + if (!base::Delete(path(), true)) { // That failed, so schedule the temp dir and its contents for deletion after // reboot. LOG(WARNING) << "Failed to delete temporary directory " << path().value() |