| Index: chrome/installer/setup/uninstall.cc
|
| diff --git a/chrome/installer/setup/uninstall.cc b/chrome/installer/setup/uninstall.cc
|
| index a39f15349d4f051544992aa5badeb0eaadcaaa37..246c860a2c088da6347227b8a79f924e1a46a55d 100644
|
| --- a/chrome/installer/setup/uninstall.cc
|
| +++ b/chrome/installer/setup/uninstall.cc
|
| @@ -432,7 +432,7 @@ base::FilePath BackupLocalStateFile(
|
| if (!file_util::CreateTemporaryFile(&backup))
|
| LOG(ERROR) << "Failed to create temporary file for Local State.";
|
| else
|
| - file_util::CopyFile(state_file, backup);
|
| + base::CopyFile(state_file, backup);
|
| break;
|
| }
|
| return backup;
|
|
|