Index: chrome/browser/chromeos/policy/user_cloud_policy_store_chromeos_unittest.cc |
diff --git a/chrome/browser/chromeos/policy/user_cloud_policy_store_chromeos_unittest.cc b/chrome/browser/chromeos/policy/user_cloud_policy_store_chromeos_unittest.cc |
index a552ef918aaee1a0a379c28096fa321a914789b3..96f19d650b524fb50dbf754ca081759a9a00da66 100644 |
--- a/chrome/browser/chromeos/policy/user_cloud_policy_store_chromeos_unittest.cc |
+++ b/chrome/browser/chromeos/policy/user_cloud_policy_store_chromeos_unittest.cc |
@@ -502,7 +502,7 @@ TEST_F(UserCloudPolicyStoreChromeOSTest, MigrationAndStoreNew) { |
store_->policy()->SerializeAsString()); |
VerifyPolicyMap(kDefaultHomepage); |
EXPECT_EQ(CloudPolicyStore::STATUS_OK, store_->status()); |
- EXPECT_TRUE(file_util::PathExists(policy_file())); |
+ EXPECT_TRUE(base::PathExists(policy_file())); |
// Now store a new policy using the new homepage location. |
const char kNewHomepage[] = "http://google.com"; |
@@ -516,7 +516,7 @@ TEST_F(UserCloudPolicyStoreChromeOSTest, MigrationAndStoreNew) { |
VerifyPolicyMap(kNewHomepage); |
// Verify that the legacy cache has been removed. |
- EXPECT_FALSE(file_util::PathExists(policy_file())); |
+ EXPECT_FALSE(base::PathExists(policy_file())); |
} |
} // namespace |