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

Unified Diff: chrome/installer/setup/uninstall.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/installer/setup/uninstall.cc
diff --git a/chrome/installer/setup/uninstall.cc b/chrome/installer/setup/uninstall.cc
index 246c860a2c088da6347227b8a79f924e1a46a55d..2b7610ff954ad3c526b04ce078cf335099c78b0c 100644
--- a/chrome/installer/setup/uninstall.cc
+++ b/chrome/installer/setup/uninstall.cc
@@ -427,7 +427,7 @@ base::FilePath BackupLocalStateFile(
const base::FilePath& local_state_folder = local_state_folders[i];
base::FilePath state_file(
local_state_folder.Append(chrome::kLocalStateFilename));
- if (!file_util::PathExists(state_file))
+ if (!base::PathExists(state_file))
continue;
if (!file_util::CreateTemporaryFile(&backup))
LOG(ERROR) << "Failed to create temporary file for Local State.";
« no previous file with comments | « chrome/installer/setup/setup_util_unittest.cc ('k') | chrome/installer/test/alternate_version_generator_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698