| Index: components/prefs/pref_service_unittest.cc
|
| diff --git a/components/prefs/pref_service_unittest.cc b/components/prefs/pref_service_unittest.cc
|
| index 373c01bcb3f3c2b37ef1966362f100936e61f12a..31e3ea67e1ad81810c80604786f3908127d31128 100644
|
| --- a/components/prefs/pref_service_unittest.cc
|
| +++ b/components/prefs/pref_service_unittest.cc
|
| @@ -178,7 +178,7 @@ TEST(PrefServiceTest, GetValueAndGetRecommendedValue) {
|
| ASSERT_FALSE(value);
|
|
|
| // Set a user-set value.
|
| - prefs.SetUserPref(kPrefName, new base::FundamentalValue(kUserValue));
|
| + prefs.SetUserPref(kPrefName, new base::Value(kUserValue));
|
|
|
| // Check that GetValue() returns the user-set value.
|
| value = pref->GetValue();
|
| @@ -194,7 +194,7 @@ TEST(PrefServiceTest, GetValueAndGetRecommendedValue) {
|
|
|
| // Set a recommended value.
|
| prefs.SetRecommendedPref(kPrefName,
|
| - new base::FundamentalValue(kRecommendedValue));
|
| + new base::Value(kRecommendedValue));
|
|
|
| // Check that GetValue() returns the user-set value.
|
| value = pref->GetValue();
|
|
|