| Index: chrome/browser/chromeos/arc/arc_auth_service.cc
|
| diff --git a/chrome/browser/chromeos/arc/arc_auth_service.cc b/chrome/browser/chromeos/arc/arc_auth_service.cc
|
| index 4c6d1e520f3e7ddf89f3ef5ea23c30e1fbde396b..37ffd78319836671ddfdb8ccfae8c5033f296c97 100644
|
| --- a/chrome/browser/chromeos/arc/arc_auth_service.cc
|
| +++ b/chrome/browser/chromeos/arc/arc_auth_service.cc
|
| @@ -494,7 +494,9 @@ void ArcAuthService::OnProvisioningFinished(ProvisioningResult result) {
|
| return;
|
|
|
| profile_->GetPrefs()->SetBoolean(prefs::kArcSignedIn, true);
|
| - if (!IsOptInVerificationDisabled()) {
|
| + // Don't show Play Store app for ARC Kiosk because the only one UI in kiosk
|
| + // mode must be the kiosk app and device is not needed for opt-in.
|
| + if (!IsOptInVerificationDisabled() && !IsArcKioskMode()) {
|
| playstore_launcher_.reset(
|
| new ArcAppLauncher(profile_, kPlayStoreAppId, true));
|
| }
|
|
|