| Index: chrome/installer/util/logging_installer.cc
|
| diff --git a/chrome/installer/util/logging_installer.cc b/chrome/installer/util/logging_installer.cc
|
| index f31ceac28eb429bf2b1e84aceec74af3580bc20c..b6c28b9fb9e63ece192d6c5780d644b46200d9cb 100644
|
| --- a/chrome/installer/util/logging_installer.cc
|
| +++ b/chrome/installer/util/logging_installer.cc
|
| @@ -63,7 +63,7 @@ TruncateResult TruncateLogFileIfNeeded(const base::FilePath& log_file) {
|
| result = LOGFILE_TRUNCATED;
|
| }
|
| }
|
| - } else if (file_util::Delete(log_file, false)) {
|
| + } else if (base::Delete(log_file, false)) {
|
| // Couldn't get sufficient access to the log file, optimistically try to
|
| // delete it.
|
| result = LOGFILE_DELETED;
|
|
|