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

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

Issue 100573002: Move directory creation functions to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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: 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 9dc90808fecc5363d7136ddad8595bfbf7dc09a7..71e4a089caa9ab2600266d12e0613f6ec7893f93 100644
--- a/webkit/browser/appcache/appcache_database_unittest.cc
+++ b/webkit/browser/appcache/appcache_database_unittest.cc
@@ -55,7 +55,7 @@ TEST(AppCacheDatabaseTest, ReCreate) {
const base::FilePath kDbFile = temp_dir.path().AppendASCII("appcache.db");
const base::FilePath kNestedDir = temp_dir.path().AppendASCII("nested");
const base::FilePath kOtherFile = kNestedDir.AppendASCII("other_file");
- EXPECT_TRUE(file_util::CreateDirectory(kNestedDir));
+ EXPECT_TRUE(base::CreateDirectory(kNestedDir));
EXPECT_EQ(3, file_util::WriteFile(kOtherFile, "foo", 3));
AppCacheDatabase db(kDbFile);
« no previous file with comments | « webkit/browser/appcache/appcache_database.cc ('k') | webkit/browser/appcache/appcache_storage_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698