Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9553)

Unified Diff: chrome/browser/component_updater/recovery_component_installer.cc

Issue 18286004: Move PathExists to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698