| Index: chrome/browser/chromeos/arc/arc_play_store_enabled_preference_handler.cc
|
| diff --git a/chrome/browser/chromeos/arc/arc_play_store_enabled_preference_handler.cc b/chrome/browser/chromeos/arc/arc_play_store_enabled_preference_handler.cc
|
| index 4e8a5ebafe8a00e3200e211b7a3b9ab6e7a8cb89..2d96e39cb5988f434077aea4dcd2b9ff138ec428 100644
|
| --- a/chrome/browser/chromeos/arc/arc_play_store_enabled_preference_handler.cc
|
| +++ b/chrome/browser/chromeos/arc/arc_play_store_enabled_preference_handler.cc
|
| @@ -18,6 +18,7 @@
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/common/pref_names.h"
|
| #include "chromeos/chromeos_switches.h"
|
| +#include "components/arc/arc_util.h"
|
| #include "components/sync_preferences/pref_service_syncable.h"
|
| #include "content/public/browser/browser_thread.h"
|
|
|
| @@ -120,7 +121,7 @@ void ArcPlayStoreEnabledPreferenceHandler::UpdateArcSessionManager() {
|
| IsArcPlayStoreEnabledPreferenceManagedForProfile(profile_));
|
| }
|
|
|
| - if (IsArcPlayStoreEnabledForProfile(profile_))
|
| + if (ShouldArcAlwaysStart() || IsArcPlayStoreEnabledForProfile(profile_))
|
| arc_session_manager_->RequestEnable();
|
| else
|
| arc_session_manager_->RequestDisable();
|
|
|