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

Unified Diff: webkit/browser/appcache/appcache_database_unittest.cc

Issue 19052005: Move PathIsWritable, DirectoryExists, ContentsEqual, and TextContentsEqual to the 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 | « ui/shell_dialogs/select_file_dialog_mac.mm ('k') | webkit/browser/database/database_tracker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/browser/appcache/appcache_database_unittest.cc
diff --git a/webkit/browser/appcache/appcache_database_unittest.cc b/webkit/browser/appcache/appcache_database_unittest.cc
index 5974d8339d8f3c57a231bc208870b4db81a758a3..34a6f0c7d242e1f03dc6be97fc968c369323f972 100644
--- a/webkit/browser/appcache/appcache_database_unittest.cc
+++ b/webkit/browser/appcache/appcache_database_unittest.cc
@@ -67,13 +67,13 @@ TEST(AppCacheDatabaseTest, ReCreate) {
EXPECT_TRUE(db.LazyOpen(true));
EXPECT_TRUE(base::PathExists(kDbFile));
- EXPECT_TRUE(file_util::DirectoryExists(kNestedDir));
+ EXPECT_TRUE(base::DirectoryExists(kNestedDir));
EXPECT_TRUE(base::PathExists(kOtherFile));
EXPECT_TRUE(db.DeleteExistingAndCreateNewDatabase());
EXPECT_TRUE(base::PathExists(kDbFile));
- EXPECT_FALSE(file_util::DirectoryExists(kNestedDir));
+ EXPECT_FALSE(base::DirectoryExists(kNestedDir));
EXPECT_FALSE(base::PathExists(kOtherFile));
}
« no previous file with comments | « ui/shell_dialogs/select_file_dialog_mac.mm ('k') | webkit/browser/database/database_tracker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698