Move directory creation functions to base namespace.
BUG=
Review URL: https://codereview.chromium.org/100573002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@238446 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome/browser/profiles/profile_manager_unittest.cc b/chrome/browser/profiles/profile_manager_unittest.cc
index 102c2f8..e6720483 100644
--- a/chrome/browser/profiles/profile_manager_unittest.cc
+++ b/chrome/browser/profiles/profile_manager_unittest.cc
@@ -63,7 +63,7 @@
virtual Profile* CreateProfileHelper(
const base::FilePath& file_path) OVERRIDE {
if (!base::PathExists(file_path)) {
- if (!file_util::CreateDirectory(file_path))
+ if (!base::CreateDirectory(file_path))
return NULL;
}
return new TestingProfile(file_path, NULL);
@@ -74,7 +74,7 @@
// This is safe while all file operations are done on the FILE thread.
BrowserThread::PostTask(
BrowserThread::FILE, FROM_HERE,
- base::Bind(base::IgnoreResult(&file_util::CreateDirectory), path));
+ base::Bind(base::IgnoreResult(&base::CreateDirectory), path));
return new TestingProfile(path, this);
}