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

Unified Diff: base/base_paths_mac.mm

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 | « no previous file | base/file_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/base_paths_mac.mm
diff --git a/base/base_paths_mac.mm b/base/base_paths_mac.mm
index 5d4461cb236c65b9ee9e3e3cb3c25adb5de16bf7..86d6a80e9add8b4c61f5fb7a35d11f66e8197b40 100644
--- a/base/base_paths_mac.mm
+++ b/base/base_paths_mac.mm
@@ -71,7 +71,7 @@ bool PathProviderMac(int key, base::FilePath* result) {
#if defined(OS_IOS)
// On IOS, this directory does not exist unless it is created explicitly.
if (success && !base::PathExists(*result))
- success = file_util::CreateDirectory(*result);
+ success = base::CreateDirectory(*result);
#endif // defined(OS_IOS)
return success;
}
« no previous file with comments | « no previous file | base/file_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698