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

Unified Diff: base/base_paths_mac.mm

Issue 18286004: Move PathExists to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months 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 | « base/base_paths.cc ('k') | base/base_paths_posix.cc » ('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 1e8bac80b7f2aa40238270b7f8f2e5c81c7239cf..a1121aaf85e994f5b2ae9c268e14555cc01f4c1a 100644
--- a/base/base_paths_mac.mm
+++ b/base/base_paths_mac.mm
@@ -65,7 +65,7 @@ bool PathProviderMac(int key, base::FilePath* result) {
result);
#if defined(OS_IOS)
// On IOS, this directory does not exist unless it is created explicitly.
- if (success && !file_util::PathExists(*result))
+ if (success && !base::PathExists(*result))
success = file_util::CreateDirectory(*result);
#endif // defined(OS_IOS)
return success;
« no previous file with comments | « base/base_paths.cc ('k') | base/base_paths_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698