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

Unified Diff: webkit/browser/quota/quota_database_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 | « webkit/browser/quota/quota_database.cc ('k') | webkit/common/blob/shareable_file_reference_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/browser/quota/quota_database_unittest.cc
diff --git a/webkit/browser/quota/quota_database_unittest.cc b/webkit/browser/quota/quota_database_unittest.cc
index 86c7649e8e236d93103a2392f7dc2449e5e6a317..347b01c1558785bb119701cb6f2e6d9dc76b61f9 100644
--- a/webkit/browser/quota/quota_database_unittest.cc
+++ b/webkit/browser/quota/quota_database_unittest.cc
@@ -39,7 +39,7 @@ class QuotaDatabaseTest : public testing::Test {
EXPECT_FALSE(db.LazyOpen(false));
ASSERT_TRUE(db.LazyOpen(true));
EXPECT_TRUE(db.db_.get());
- EXPECT_TRUE(kDbFile.empty() || file_util::PathExists(kDbFile));
+ EXPECT_TRUE(kDbFile.empty() || base::PathExists(kDbFile));
}
void UpgradeSchemaV2toV3(const base::FilePath& kDbFile) {
« no previous file with comments | « webkit/browser/quota/quota_database.cc ('k') | webkit/common/blob/shareable_file_reference_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698