| Index: chrome/browser/policy/cloud/user_cloud_policy_store_unittest.cc
|
| diff --git a/chrome/browser/policy/cloud/user_cloud_policy_store_unittest.cc b/chrome/browser/policy/cloud/user_cloud_policy_store_unittest.cc
|
| index 671f91454d270d685153559f8647e123d55aae4e..1f5b21e89c97f8bb4ab8d805fda50efa38b17a3b 100644
|
| --- a/chrome/browser/policy/cloud/user_cloud_policy_store_unittest.cc
|
| +++ b/chrome/browser/policy/cloud/user_cloud_policy_store_unittest.cc
|
| @@ -199,14 +199,14 @@ TEST_F(UserCloudPolicyStoreTest, StoreThenClear) {
|
| EXPECT_FALSE(store_->policy_map().empty());
|
|
|
| // Policy file should exist.
|
| - ASSERT_TRUE(file_util::PathExists(policy_file()));
|
| + ASSERT_TRUE(base::PathExists(policy_file()));
|
|
|
| EXPECT_CALL(observer_, OnStoreLoaded(store_.get()));
|
| store_->Clear();
|
| RunUntilIdle();
|
|
|
| // Policy file should not exist.
|
| - ASSERT_TRUE(!file_util::PathExists(policy_file()));
|
| + ASSERT_TRUE(!base::PathExists(policy_file()));
|
|
|
| // Policy should be gone.
|
| EXPECT_FALSE(store_->policy());
|
|
|