| Index: components/policy/core/browser/autofill_policy_handler_unittest.cc
|
| diff --git a/components/policy/core/browser/autofill_policy_handler_unittest.cc b/components/policy/core/browser/autofill_policy_handler_unittest.cc
|
| index 6190f98ba5cec721f5545d5c6d320f1e2e9bf985..5beda3a357652b1484fababa481aec66a4491b03 100644
|
| --- a/components/policy/core/browser/autofill_policy_handler_unittest.cc
|
| +++ b/components/policy/core/browser/autofill_policy_handler_unittest.cc
|
| @@ -29,7 +29,7 @@ TEST_F(AutofillPolicyHandlerTest, Enabled) {
|
| PolicyMap policy;
|
| policy.Set(key::kAutoFillEnabled, POLICY_LEVEL_MANDATORY, POLICY_SCOPE_USER,
|
| POLICY_SOURCE_CLOUD,
|
| - base::MakeUnique<base::FundamentalValue>(true), nullptr);
|
| + base::MakeUnique<base::Value>(true), nullptr);
|
| PrefValueMap prefs;
|
| AutofillPolicyHandler handler;
|
| handler.ApplyPolicySettings(policy, &prefs);
|
| @@ -42,7 +42,7 @@ TEST_F(AutofillPolicyHandlerTest, Disabled) {
|
| PolicyMap policy;
|
| policy.Set(key::kAutoFillEnabled, POLICY_LEVEL_MANDATORY, POLICY_SCOPE_USER,
|
| POLICY_SOURCE_CLOUD,
|
| - base::MakeUnique<base::FundamentalValue>(false), nullptr);
|
| + base::MakeUnique<base::Value>(false), nullptr);
|
| PrefValueMap prefs;
|
| AutofillPolicyHandler handler;
|
| handler.ApplyPolicySettings(policy, &prefs);
|
|
|