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

Unified Diff: content/browser/storage_partition_impl_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: content/browser/storage_partition_impl_unittest.cc
diff --git a/content/browser/storage_partition_impl_unittest.cc b/content/browser/storage_partition_impl_unittest.cc
index 911f835ab7a226c2b6a1a49a9c63a38134c74a43..008a898b2e899d14722a75575e9489f89fd9f1ae 100644
--- a/content/browser/storage_partition_impl_unittest.cc
+++ b/content/browser/storage_partition_impl_unittest.cc
@@ -202,7 +202,7 @@ class RemoveLocalStorageTester {
// stores data in the host file system.
base::FilePath storage_path =
profile_->GetPath().AppendASCII("Local Storage");
- file_util::CreateDirectory(storage_path);
+ base::CreateDirectory(storage_path);
// Write some files.
file_util::WriteFile(storage_path.Append(kDomStorageOrigin1), NULL, 0);

Powered by Google App Engine
This is Rietveld 408576698