| Index: components/policy/core/common/configuration_policy_provider_test.cc
|
| diff --git a/components/policy/core/common/configuration_policy_provider_test.cc b/components/policy/core/common/configuration_policy_provider_test.cc
|
| index 492ab02532929132fe8edd9cd14eff53c1def62b..93254d6ce8f77e0c2c2bcd00f3fb9ce1ce2bcba7 100644
|
| --- a/components/policy/core/common/configuration_policy_provider_test.cc
|
| +++ b/components/policy/core/common/configuration_policy_provider_test.cc
|
| @@ -263,7 +263,7 @@ TEST_P(ConfigurationPolicyProviderTest, StringValue) {
|
| }
|
|
|
| TEST_P(ConfigurationPolicyProviderTest, BooleanValue) {
|
| - base::FundamentalValue expected_value(true);
|
| + base::Value expected_value(true);
|
| CheckValue(test_keys::kKeyBoolean,
|
| expected_value,
|
| base::Bind(&PolicyProviderTestHarness::InstallBooleanPolicy,
|
| @@ -273,7 +273,7 @@ TEST_P(ConfigurationPolicyProviderTest, BooleanValue) {
|
| }
|
|
|
| TEST_P(ConfigurationPolicyProviderTest, IntegerValue) {
|
| - base::FundamentalValue expected_value(42);
|
| + base::Value expected_value(42);
|
| CheckValue(test_keys::kKeyInteger,
|
| expected_value,
|
| base::Bind(&PolicyProviderTestHarness::InstallIntegerPolicy,
|
|
|