Index: chrome/browser/policy/device_policy_cache_unittest.cc |
diff --git a/chrome/browser/policy/device_policy_cache_unittest.cc b/chrome/browser/policy/device_policy_cache_unittest.cc |
index 37e1b6b02f3193cd40caaf101498aaa0abd076ba..7b706d1b7cd974ab0cdeb9d8fc42a3005379d538 100644 |
--- a/chrome/browser/policy/device_policy_cache_unittest.cc |
+++ b/chrome/browser/policy/device_policy_cache_unittest.cc |
@@ -118,7 +118,7 @@ TEST_F(DevicePolicyCacheTest, Startup) { |
policy)); |
cache_->Load(); |
testing::Mock::VerifyAndClearExpectations(&signed_settings_helper_); |
- FundamentalValue expected(120); |
+ base::FundamentalValue expected(120); |
EXPECT_TRUE(Value::Equals(&expected, |
GetMandatoryPolicy( |
kPolicyDevicePolicyRefreshRate))); |
@@ -137,7 +137,7 @@ TEST_F(DevicePolicyCacheTest, SetPolicy) { |
policy)); |
cache_->Load(); |
testing::Mock::VerifyAndClearExpectations(&signed_settings_helper_); |
- FundamentalValue expected(120); |
+ base::FundamentalValue expected(120); |
EXPECT_TRUE(Value::Equals(&expected, |
GetMandatoryPolicy( |
kPolicyDevicePolicyRefreshRate))); |
@@ -153,7 +153,7 @@ TEST_F(DevicePolicyCacheTest, SetPolicy) { |
EXPECT_CALL(signed_settings_helper_, CancelCallback(_)); |
cache_->SetPolicy(new_policy); |
testing::Mock::VerifyAndClearExpectations(&signed_settings_helper_); |
- FundamentalValue updated_expected(300); |
+ base::FundamentalValue updated_expected(300); |
EXPECT_TRUE(Value::Equals(&updated_expected, |
GetMandatoryPolicy( |
kPolicyDevicePolicyRefreshRate))); |
@@ -180,7 +180,7 @@ TEST_F(DevicePolicyCacheTest, SetPolicyWrongUser) { |
cache_->SetPolicy(new_policy); |
testing::Mock::VerifyAndClearExpectations(&signed_settings_helper_); |
- FundamentalValue expected(120); |
+ base::FundamentalValue expected(120); |
EXPECT_TRUE(Value::Equals(&expected, |
GetMandatoryPolicy( |
kPolicyDevicePolicyRefreshRate))); |
@@ -205,7 +205,7 @@ TEST_F(DevicePolicyCacheTest, SetPolicyNonEnterpriseDevice) { |
cache_->SetPolicy(new_policy); |
testing::Mock::VerifyAndClearExpectations(&signed_settings_helper_); |
- FundamentalValue expected(120); |
+ base::FundamentalValue expected(120); |
EXPECT_TRUE(Value::Equals(&expected, |
GetMandatoryPolicy( |
kPolicyDevicePolicyRefreshRate))); |