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

Unified Diff: ui/base/ui_base_paths.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
« no previous file with comments | « tools/gn/ninja_toolchain_writer.cc ('k') | ui/surface/accelerated_surface_transformer_win_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/ui_base_paths.cc
diff --git a/ui/base/ui_base_paths.cc b/ui/base/ui_base_paths.cc
index ae1f3fff26df70b73b0329c2862f3aac0187348d..ee7566ef438a1db3a539b6411095e62d77364179 100644
--- a/ui/base/ui_base_paths.cc
+++ b/ui/base/ui_base_paths.cc
@@ -63,7 +63,7 @@ bool PathProvider(int key, base::FilePath* result) {
}
if (create_dir && !base::PathExists(cur) &&
- !file_util::CreateDirectory(cur))
+ !base::CreateDirectory(cur))
return false;
*result = cur;
« no previous file with comments | « tools/gn/ninja_toolchain_writer.cc ('k') | ui/surface/accelerated_surface_transformer_win_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698