| Index: chrome/browser/policy/cloud/resource_cache.cc
|
| diff --git a/chrome/browser/policy/cloud/resource_cache.cc b/chrome/browser/policy/cloud/resource_cache.cc
|
| index 998b728dad3795bc1cf49618489bd1e7aaf16ea2..79b553141afbf0e73276e2836936c05a71222e8a 100644
|
| --- a/chrome/browser/policy/cloud/resource_cache.cc
|
| +++ b/chrome/browser/policy/cloud/resource_cache.cc
|
| @@ -218,7 +218,7 @@ bool ResourceCache::VerifyKeyPath(const std::string& key,
|
| if (!Base64Encode(key, &encoded))
|
| return false;
|
| *path = cache_dir_.AppendASCII(encoded);
|
| - return allow_create ? file_util::CreateDirectory(*path) :
|
| + return allow_create ? base::CreateDirectory(*path) :
|
| base::DirectoryExists(*path);
|
| }
|
|
|
|
|