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

Unified Diff: sql/connection_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 | « sql/connection.cc ('k') | third_party/leveldatabase/env_chromium.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sql/connection_unittest.cc
diff --git a/sql/connection_unittest.cc b/sql/connection_unittest.cc
index 1afd2dded3366baffe2dc6f831225a8b5395020f..7327f14aa655ff79b45d923e8f9e6d343819f9a4 100644
--- a/sql/connection_unittest.cc
+++ b/sql/connection_unittest.cc
@@ -419,10 +419,10 @@ TEST_F(SQLConnectionTest, Delete) {
// Should have both a main database file and a journal file because
// of journal_mode PERSIST.
base::FilePath journal(db_path().value() + FILE_PATH_LITERAL("-journal"));
- ASSERT_TRUE(file_util::PathExists(db_path()));
- ASSERT_TRUE(file_util::PathExists(journal));
+ ASSERT_TRUE(base::PathExists(db_path()));
+ ASSERT_TRUE(base::PathExists(journal));
sql::Connection::Delete(db_path());
- EXPECT_FALSE(file_util::PathExists(db_path()));
- EXPECT_FALSE(file_util::PathExists(journal));
+ EXPECT_FALSE(base::PathExists(db_path()));
+ EXPECT_FALSE(base::PathExists(journal));
}
« no previous file with comments | « sql/connection.cc ('k') | third_party/leveldatabase/env_chromium.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698