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

Unified Diff: chrome/browser/component_updater/component_patcher_win.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/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();
« no previous file with comments | « chrome/browser/component_updater/component_patcher.cc ('k') | chrome/browser/component_updater/component_unpacker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698