| Index: chrome/browser/profiles/profile_manager_unittest.cc
|
| diff --git a/chrome/browser/profiles/profile_manager_unittest.cc b/chrome/browser/profiles/profile_manager_unittest.cc
|
| index 6a66ac55f2c3c9a757d50e71e551db91e13a9ff6..48507e9156daa1874e36f010c166e37490a4fdc0 100644
|
| --- a/chrome/browser/profiles/profile_manager_unittest.cc
|
| +++ b/chrome/browser/profiles/profile_manager_unittest.cc
|
| @@ -551,7 +551,7 @@ TEST_F(ProfileManagerTest, AutoloadProfilesWithBackgroundApps) {
|
| ProfileAttributesStorage& storage =
|
| profile_manager->GetProfileAttributesStorage();
|
| local_state_.Get()->SetUserPref(prefs::kBackgroundModeEnabled,
|
| - new base::FundamentalValue(true));
|
| + new base::Value(true));
|
|
|
| // Setting a pref which is not applicable to a system (i.e., Android in this
|
| // case) does not necessarily create it. Don't bother continuing with the
|
| @@ -586,7 +586,7 @@ TEST_F(ProfileManagerTest, DoNotAutoloadProfilesIfBackgroundModeOff) {
|
| ProfileAttributesStorage& storage =
|
| profile_manager->GetProfileAttributesStorage();
|
| local_state_.Get()->SetUserPref(prefs::kBackgroundModeEnabled,
|
| - new base::FundamentalValue(false));
|
| + new base::Value(false));
|
|
|
| EXPECT_EQ(0u, storage.GetNumberOfProfiles());
|
|
|
|
|