| Index: chrome/browser/policy/cloud/user_cloud_policy_store.cc
 | 
| diff --git a/chrome/browser/policy/cloud/user_cloud_policy_store.cc b/chrome/browser/policy/cloud/user_cloud_policy_store.cc
 | 
| index 1381d98c65e26533971215bd24dd645a3be9eca7..30e00dc953a88785a5a6e03daf0a01534b117f2a 100644
 | 
| --- a/chrome/browser/policy/cloud/user_cloud_policy_store.cc
 | 
| +++ b/chrome/browser/policy/cloud/user_cloud_policy_store.cc
 | 
| @@ -51,7 +51,7 @@ const base::FilePath::CharType kPolicyCacheFile[] =
 | 
|  policy::PolicyLoadResult LoadPolicyFromDisk(const base::FilePath& path) {
 | 
|    policy::PolicyLoadResult result;
 | 
|    // If the backing file does not exist, just return.
 | 
| -  if (!file_util::PathExists(path)) {
 | 
| +  if (!base::PathExists(path)) {
 | 
|      result.status = policy::LOAD_RESULT_NO_POLICY_FILE;
 | 
|      return result;
 | 
|    }
 | 
| 
 |