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

Unified Diff: chrome/test/mini_installer_test/run_all_unittests.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
« no previous file with comments | « chrome/test/mini_installer_test/installer_test_util.cc ('k') | chrome/test/nacl/nacl_browsertest_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/mini_installer_test/run_all_unittests.cc
diff --git a/chrome/test/mini_installer_test/run_all_unittests.cc b/chrome/test/mini_installer_test/run_all_unittests.cc
index 0fd6b810a595979d91f3be8e002b1c02401bb1ca..06a1c1d821772f85f43f18fef42c97745a0684bf 100644
--- a/chrome/test/mini_installer_test/run_all_unittests.cc
+++ b/chrome/test/mini_installer_test/run_all_unittests.cc
@@ -29,10 +29,10 @@ void BackUpProfile(bool chrome_frame) {
backup_path = backup_path.Append(
mini_installer_constants::kChromeUserDataBackupDir);
// Will check if User Data profile is available.
- if (file_util::PathExists(path)) {
+ if (base::PathExists(path)) {
// Will check if User Data is already backed up.
// If yes, will delete and create new one.
- if (file_util::PathExists(backup_path))
+ if (base::PathExists(backup_path))
base::Delete(backup_path, true);
base::CopyDirectory(path, backup_path, true);
} else {
« no previous file with comments | « chrome/test/mini_installer_test/installer_test_util.cc ('k') | chrome/test/nacl/nacl_browsertest_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698