Index: chrome/installer/tools/validate_installation_main.cc |
diff --git a/chrome/installer/tools/validate_installation_main.cc b/chrome/installer/tools/validate_installation_main.cc |
index 1fd86dee39dd373533a712b0babd9e4c2fc1c4fa..8c5069fd1fd120dc74b6580c2c5f03ab0730dc24 100644 |
--- a/chrome/installer/tools/validate_installation_main.cc |
+++ b/chrome/installer/tools/validate_installation_main.cc |
@@ -81,7 +81,7 @@ ConsoleLogHelper::~ConsoleLogHelper() { |
// Delete the log file if it wasn't written to (this is expected). |
int64 file_size = 0; |
if (file_util::GetFileSize(log_file_path_, &file_size) && file_size == 0) |
- base::Delete(log_file_path_, false); |
+ base::DeleteFile(log_file_path_, false); |
} |
// Returns the path to the log file to create. The file should be empty at |