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

Unified Diff: chrome/browser/browsing_data/browsing_data_local_storage_helper_browsertest.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: chrome/browser/browsing_data/browsing_data_local_storage_helper_browsertest.cc
diff --git a/chrome/browser/browsing_data/browsing_data_local_storage_helper_browsertest.cc b/chrome/browser/browsing_data/browsing_data_local_storage_helper_browsertest.cc
index 370495b71c6a37a86e4852a0fd53532f15f969a2..564e07f9e2d3419a75c42510e6fc19a0bc0200cc 100644
--- a/chrome/browser/browsing_data/browsing_data_local_storage_helper_browsertest.cc
+++ b/chrome/browser/browsing_data/browsing_data_local_storage_helper_browsertest.cc
@@ -54,7 +54,7 @@ class BrowsingDataLocalStorageHelperTest : public InProcessBrowserTest {
// Note: This helper depends on details of how the dom_storage library
// stores data in the host file system.
base::FilePath storage_path = GetLocalStoragePathForTestingProfile();
- file_util::CreateDirectory(storage_path);
+ base::CreateDirectory(storage_path);
const base::FilePath::CharType* kFilesToCreate[] = {
kTestFile0, kTestFile1, kTestFileInvalid, kTestFileExtension
};

Powered by Google App Engine
This is Rietveld 408576698