summaryrefslogtreecommitdiff
path: root/chrome/browser/component_updater/recovery_component_installer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/component_updater/recovery_component_installer.cc')
-rw-r--r--chrome/browser/component_updater/recovery_component_installer.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/component_updater/recovery_component_installer.cc b/chrome/browser/component_updater/recovery_component_installer.cc
index 4891aab1f8..625afd60a2 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.