| 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 223d2aaf7cd0673819ba20829cc5ca436850c74f..f84f5e6b5baa427df1ff81ecdc025c2357e68007 100644
|
| --- a/components/policy/core/browser/autofill_policy_handler_unittest.cc
|
| +++ b/components/policy/core/browser/autofill_policy_handler_unittest.cc
|
| @@ -28,7 +28,7 @@ TEST_F(AutofillPolicyHandlerTest, Enabled) {
|
| policy.Set(key::kAutoFillEnabled,
|
| POLICY_LEVEL_MANDATORY,
|
| POLICY_SCOPE_USER,
|
| - base::Value::CreateBooleanValue(true),
|
| + new base::FundamentalValue(true),
|
| NULL);
|
| PrefValueMap prefs;
|
| AutofillPolicyHandler handler;
|
| @@ -43,7 +43,7 @@ TEST_F(AutofillPolicyHandlerTest, Disabled) {
|
| policy.Set(key::kAutoFillEnabled,
|
| POLICY_LEVEL_MANDATORY,
|
| POLICY_SCOPE_USER,
|
| - base::Value::CreateBooleanValue(false),
|
| + new base::FundamentalValue(false),
|
| NULL);
|
| PrefValueMap prefs;
|
| AutofillPolicyHandler handler;
|
|
|