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

Unified Diff: webkit/browser/quota/quota_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
« no previous file with comments | « webkit/browser/quota/quota_database.cc ('k') | webkit/browser/quota/quota_manager.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 e1e78a5a589297346a6211665805590e12edae7e..e457da52008d09d2cfb07f8fe2d0ea90614475bf 100644
--- a/webkit/browser/quota/quota_database_unittest.cc
+++ b/webkit/browser/quota/quota_database_unittest.cc
@@ -418,7 +418,7 @@ class QuotaDatabaseTest : public testing::Test {
if (kDbFile.empty()) {
return db->OpenInMemory();
}
- if (!file_util::CreateDirectory(kDbFile.DirName()))
+ if (!base::CreateDirectory(kDbFile.DirName()))
return false;
if (!db->Open(kDbFile))
return false;
« no previous file with comments | « webkit/browser/quota/quota_database.cc ('k') | webkit/browser/quota/quota_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698