| Index: components/prefs/pref_value_store_unittest.cc
|
| diff --git a/components/prefs/pref_value_store_unittest.cc b/components/prefs/pref_value_store_unittest.cc
|
| index b1656a427bbc6bb31b98c87b74f97d2bbe26b539..66beef8530053eadef2655719789fc05866f4d6c 100644
|
| --- a/components/prefs/pref_value_store_unittest.cc
|
| +++ b/components/prefs/pref_value_store_unittest.cc
|
| @@ -321,7 +321,7 @@ TEST_F(PrefValueStoreTest, GetValue) {
|
|
|
| // Test getting a preference value that the |PrefValueStore|
|
| // does not contain.
|
| - base::FundamentalValue tmp_dummy_value(true);
|
| + base::Value tmp_dummy_value(true);
|
| value = &tmp_dummy_value;
|
| ASSERT_FALSE(pref_value_store_->GetValue(prefs::kMissingPref,
|
| base::Value::TYPE_STRING, &value));
|
| @@ -386,7 +386,7 @@ TEST_F(PrefValueStoreTest, GetRecommendedValue) {
|
| actual_str_value);
|
|
|
| // Test getting recommended value when no recommended value is present.
|
| - base::FundamentalValue tmp_dummy_value(true);
|
| + base::Value tmp_dummy_value(true);
|
| value = &tmp_dummy_value;
|
| ASSERT_FALSE(pref_value_store_->GetRecommendedValue(
|
| prefs::kDefaultPref,
|
|
|