| Index: chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl_unittest.cc
|
| diff --git a/chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl_unittest.cc b/chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl_unittest.cc
|
| index 92e680f251bd48334aa9992b2cbdced98e53ce10..3869a144cc5c15a1f4c82da8f2cfa7c702f7ea82 100644
|
| --- a/chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl_unittest.cc
|
| +++ b/chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl_unittest.cc
|
| @@ -3572,15 +3572,15 @@ TEST_F(ChromeLauncherControllerImplWithArcTest, ArcManaged) {
|
| // Arc is managed and enabled, Play Store pin should be available.
|
| // Note: SHOWING_TERMS_OF_SERVICE here means that opt-in flow starts.
|
| profile()->GetTestingPrefService()->SetManagedPref(
|
| - prefs::kArcEnabled, new base::FundamentalValue(true));
|
| + prefs::kArcEnabled, new base::Value(true));
|
| base::RunLoop().RunUntilIdle();
|
| ValidateArcState(true, true,
|
| arc::ArcSessionManager::State::SHOWING_TERMS_OF_SERVICE,
|
| "AppList, Chrome, Play Store");
|
|
|
| // Arc is managed and disabled, Play Store pin should not be available.
|
| - profile()->GetTestingPrefService()->SetManagedPref(
|
| - prefs::kArcEnabled, new base::FundamentalValue(false));
|
| + profile()->GetTestingPrefService()->SetManagedPref(prefs::kArcEnabled,
|
| + new base::Value(false));
|
| base::RunLoop().RunUntilIdle();
|
| ValidateArcState(false, true, arc::ArcSessionManager::State::STOPPED,
|
| "AppList, Chrome");
|
|
|