| 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;
|
|
|