Index: chrome/common/chrome_paths.cc |
diff --git a/chrome/common/chrome_paths.cc b/chrome/common/chrome_paths.cc |
index b37dadb0d3f4e1f4347922529253498c9faf7683..6e55ab90435d1ad05b808f001844c82f10ce836a 100644 |
--- a/chrome/common/chrome_paths.cc |
+++ b/chrome/common/chrome_paths.cc |
@@ -518,7 +518,7 @@ bool PathProvider(int key, base::FilePath* result) { |
// TODO(bauerb): http://crbug.com/259796 |
base::ThreadRestrictions::ScopedAllowIO allow_io; |
if (create_dir && !base::PathExists(cur) && |
- !file_util::CreateDirectory(cur)) |
+ !base::CreateDirectory(cur)) |
return false; |
*result = cur; |