Index: chrome/installer/setup/uninstall.cc |
diff --git a/chrome/installer/setup/uninstall.cc b/chrome/installer/setup/uninstall.cc |
index de4f3f764ecdc84647404728b9f7f729580ec283..c71383491acc29c3fac3cd2f53b172371d0de64a 100644 |
--- a/chrome/installer/setup/uninstall.cc |
+++ b/chrome/installer/setup/uninstall.cc |
@@ -477,7 +477,7 @@ base::FilePath BackupLocalStateFile( |
local_state_folder.Append(chrome::kLocalStateFilename)); |
if (!base::PathExists(state_file)) |
continue; |
- if (!file_util::CreateTemporaryFile(&backup)) |
+ if (!base::CreateTemporaryFile(&backup)) |
LOG(ERROR) << "Failed to create temporary file for Local State."; |
else |
base::CopyFile(state_file, backup); |
@@ -535,7 +535,7 @@ bool MoveSetupOutOfInstallFolder(const InstallerState& installer_state, |
base::FilePath temp_file; |
if (!PathService::Get(base::DIR_TEMP, &tmp_dir)) { |
NOTREACHED(); |
- } else if (!file_util::CreateTemporaryFileInDir(tmp_dir, &temp_file)) { |
+ } else if (!base::CreateTemporaryFileInDir(tmp_dir, &temp_file)) { |
LOG(ERROR) << "Failed to create temporary file for setup.exe."; |
} else { |
VLOG(1) << "Changing current directory to: " << tmp_dir.value(); |