summaryrefslogtreecommitdiff
path: root/chrome/browser/component_updater/recovery_component_installer.cc
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2013-07-17 14:55:54 +0100
committerBen Murdoch <benm@google.com>2013-07-17 14:55:54 +0100
commit7dbb3d5cf0c15f500944d211057644d6a2f37371 (patch)
tree701119ba0596f51b0ab466d6472b0f98211359c5 /chrome/browser/component_updater/recovery_component_installer.cc
parentb2ecf4836a0eb284ddac7746b1f7ba613777a739 (diff)
downloadchromium_org-7dbb3d5cf0c15f500944d211057644d6a2f37371.tar.gz
Merge from Chromium at DEPS revision r212014
This commit was generated by merge_to_master.py. Change-Id: Ie0f261e9682cd8abea1eea1e51beab83d5eea21a
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.