Index: chrome/browser/component_updater/recovery_component_installer.cc |
diff --git a/chrome/browser/component_updater/recovery_component_installer.cc b/chrome/browser/component_updater/recovery_component_installer.cc |
index 4891aab1f8be1320e4dbf27a7b9e2de1e9da2264..625afd60a2b371ba90cdd484848b8e1f4e120ccf 100644 |
--- a/chrome/browser/component_updater/recovery_component_installer.cc |
+++ b/chrome/browser/component_updater/recovery_component_installer.cc |
@@ -112,7 +112,7 @@ bool RecoveryComponentInstaller::Install(const base::DictionaryValue& manifest, |
if (current_version_.CompareTo(version) >= 0) |
return false; |
base::FilePath main_file = unpack_path.Append(kRecoveryFileName); |
- if (!file_util::PathExists(main_file)) |
+ if (!base::PathExists(main_file)) |
return false; |
// Passed the basic tests. The installation continues with the |
// recovery component itself running from the temp directory. |