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

Unified Diff: chrome/browser/storage_monitor/media_storage_util_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: chrome/browser/storage_monitor/media_storage_util_unittest.cc
diff --git a/chrome/browser/storage_monitor/media_storage_util_unittest.cc b/chrome/browser/storage_monitor/media_storage_util_unittest.cc
index f1d4621a20aeb6f6c5118ffd96838f5652d9babe..b6dc6c44b16e8c2ba451015fafa02ca989a2a175 100644
--- a/chrome/browser/storage_monitor/media_storage_util_unittest.cc
+++ b/chrome/browser/storage_monitor/media_storage_util_unittest.cc
@@ -54,7 +54,7 @@ class MediaStorageUtilTest : public testing::Test {
base::FilePath path(scoped_temp_dir_.path());
if (create_dcim_dir)
path = path.Append(kDCIMDirectoryName);
- if (!file_util::CreateDirectory(path))
+ if (!base::CreateDirectory(path))
return base::FilePath();
return scoped_temp_dir_.path();
}

Powered by Google App Engine
This is Rietveld 408576698