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

Unified Diff: chrome/browser/first_run/first_run_unittest.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/browser/first_run/first_run_internal_win.cc ('k') | chrome/browser/first_run/upgrade_util_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/first_run/first_run_unittest.cc
diff --git a/chrome/browser/first_run/first_run_unittest.cc b/chrome/browser/first_run/first_run_unittest.cc
index 8cd1edf9aeb56342458c08d7f585ae9b208c8b23..0e0edcb37a695d3cd1944ca80e9cd383c4b10a20 100644
--- a/chrome/browser/first_run/first_run_unittest.cc
+++ b/chrome/browser/first_run/first_run_unittest.cc
@@ -34,10 +34,10 @@ class FirstRunTest : public testing::Test {
TEST_F(FirstRunTest, RemoveSentinel) {
EXPECT_TRUE(CreateSentinel());
- EXPECT_TRUE(file_util::PathExists(sentinel_path_));
+ EXPECT_TRUE(base::PathExists(sentinel_path_));
EXPECT_TRUE(RemoveSentinel());
- EXPECT_FALSE(file_util::PathExists(sentinel_path_));
+ EXPECT_FALSE(base::PathExists(sentinel_path_));
}
TEST_F(FirstRunTest, SetupMasterPrefsFromInstallPrefs_VariationsSeed) {
« no previous file with comments | « chrome/browser/first_run/first_run_internal_win.cc ('k') | chrome/browser/first_run/upgrade_util_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698