| Index: chrome/browser/policy/cloud_policy_provider_unittest.cc
|
| diff --git a/chrome/browser/policy/cloud_policy_provider_unittest.cc b/chrome/browser/policy/cloud_policy_provider_unittest.cc
|
| index f8f8768c1c2ab5a1abb3abd619ad3716d1dab31d..2a6d0002f69c3b9472110182e665b7618d471017 100644
|
| --- a/chrome/browser/policy/cloud_policy_provider_unittest.cc
|
| +++ b/chrome/browser/policy/cloud_policy_provider_unittest.cc
|
| @@ -128,11 +128,11 @@ TEST_F(CloudPolicyProviderTest,
|
|
|
| // Prepare |cache[0]| to serve some non-proxy policies.
|
| caches[0].raw_mandatory_policy()->Set(kPolicyShowHomeButton,
|
| - Value::CreateBooleanValue(true));
|
| + base::TrueValue());
|
| caches[0].raw_mandatory_policy()->Set(kPolicyIncognitoEnabled,
|
| - Value::CreateBooleanValue(true));
|
| + base::TrueValue());
|
| caches[0].raw_mandatory_policy()->Set(kPolicyTranslateEnabled,
|
| - Value::CreateBooleanValue(true));
|
| + base::TrueValue());
|
| caches[0].set_initialized(true);
|
|
|
| // Prepare the other caches to serve one proxy-policy each.
|
|
|