Index: chrome/installer/util/logging_installer.cc |
diff --git a/chrome/installer/util/logging_installer.cc b/chrome/installer/util/logging_installer.cc |
index 15b3d7282d438bcdc053c807c20c41aa4e9939ff..3ac60b365246e2af737583975e92a7e2eb5db1c3 100644 |
--- a/chrome/installer/util/logging_installer.cc |
+++ b/chrome/installer/util/logging_installer.cc |
@@ -34,7 +34,7 @@ TruncateResult TruncateLogFileIfNeeded(const base::FilePath& log_file) { |
TruncateResult result = LOGFILE_UNTOUCHED; |
int64 log_size = 0; |
- if (file_util::GetFileSize(log_file, &log_size) && |
+ if (base::GetFileSize(log_file, &log_size) && |
log_size > kMaxInstallerLogFileSize) { |
// Cause the old log file to be deleted when we are done with it. |
const int file_flags = base::PLATFORM_FILE_OPEN | |