| 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 0e9122f9e01064a2f63861c9a4765c40d5c029d6..6190f98ba5cec721f5545d5c6d320f1e2e9bf985 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::WrapUnique(new base::FundamentalValue(true)), nullptr);
|
| + base::MakeUnique<base::FundamentalValue>(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::WrapUnique(new base::FundamentalValue(false)), nullptr);
|
| + base::MakeUnique<base::FundamentalValue>(false), nullptr);
|
| PrefValueMap prefs;
|
| AutofillPolicyHandler handler;
|
| handler.ApplyPolicySettings(policy, &prefs);
|
|
|