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

Unified Diff: chrome/browser/performance_monitor/performance_monitor_browsertest.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/performance_monitor/performance_monitor_browsertest.cc
diff --git a/chrome/browser/performance_monitor/performance_monitor_browsertest.cc b/chrome/browser/performance_monitor/performance_monitor_browsertest.cc
index c5aac772fd3eac11a66a278c14de802a0453fcb1..b5fa1803965e62d47c92b81b8ed55d966e309df5 100644
--- a/chrome/browser/performance_monitor/performance_monitor_browsertest.cc
+++ b/chrome/browser/performance_monitor/performance_monitor_browsertest.cc
@@ -307,12 +307,12 @@ class PerformanceMonitorUncleanExitBrowserTest
PathService::Get(chrome::DIR_TEST_DATA, &stock_prefs_file);
stock_prefs_file = stock_prefs_file.AppendASCII("performance_monitor")
.AppendASCII("unclean_exit_prefs");
- CHECK(file_util::PathExists(stock_prefs_file));
+ CHECK(base::PathExists(stock_prefs_file));
base::FilePath first_profile_prefs_file =
first_profile.Append(chrome::kPreferencesFilename);
CHECK(base::CopyFile(stock_prefs_file, first_profile_prefs_file));
- CHECK(file_util::PathExists(first_profile_prefs_file));
+ CHECK(base::PathExists(first_profile_prefs_file));
second_profile_name_ =
std::string(chrome::kMultiProfileDirPrefix)
@@ -325,7 +325,7 @@ class PerformanceMonitorUncleanExitBrowserTest
base::FilePath second_profile_prefs_file =
second_profile.Append(chrome::kPreferencesFilename);
CHECK(base::CopyFile(stock_prefs_file, second_profile_prefs_file));
- CHECK(file_util::PathExists(second_profile_prefs_file));
+ CHECK(base::PathExists(second_profile_prefs_file));
return true;
}
« no previous file with comments | « chrome/browser/page_cycler/page_cycler_unittest.cc ('k') | chrome/browser/policy/cloud/user_cloud_policy_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698