| Index: chrome/browser/component_updater/component_patcher_win.cc
|
| diff --git a/chrome/browser/component_updater/component_patcher_win.cc b/chrome/browser/component_updater/component_patcher_win.cc
|
| index a2f68655899fd30360c794262117c844cfb4583d..76a72c5d045b4cbaf8e59a226bbb7ddb3b03d543 100644
|
| --- a/chrome/browser/component_updater/component_patcher_win.cc
|
| +++ b/chrome/browser/component_updater/component_patcher_win.cc
|
| @@ -42,12 +42,12 @@ base::FilePath FindSetupProgram() {
|
| base::FilePath setup_path = exe_dir;
|
| setup_path = setup_path.AppendASCII(installer_dir);
|
| setup_path = setup_path.AppendASCII(setup_exe);
|
| - if (file_util::PathExists(setup_path))
|
| + if (base::PathExists(setup_path))
|
| return setup_path;
|
|
|
| setup_path = exe_dir;
|
| setup_path = setup_path.AppendASCII(setup_exe);
|
| - if (file_util::PathExists(setup_path))
|
| + if (base::PathExists(setup_path))
|
| return setup_path;
|
|
|
| return base::FilePath();
|
|
|