| Index: chrome/browser/ui/webui/options/browser_options_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/browser_options_handler.cc b/chrome/browser/ui/webui/options/browser_options_handler.cc
|
| index bc01b90c00945976a58b10734a2e6b4dbaf97f6d..d6411ffdd36cdc09933347ef74d35f0b1d65f326 100644
|
| --- a/chrome/browser/ui/webui/options/browser_options_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/browser_options_handler.cc
|
| @@ -1219,10 +1219,10 @@ void BrowserOptionsHandler::InitializePage() {
|
|
|
| if (arc::IsArcAllowedForProfile(profile) &&
|
| !arc::IsArcOptInVerificationDisabled()) {
|
| - base::Value is_arc_enabled(arc::IsArcPlayStoreEnabledForProfile(profile));
|
| + base::Value is_play_store_enabled(
|
| + arc::IsArcPlayStoreEnabledForProfile(profile));
|
| web_ui()->CallJavascriptFunctionUnsafe(
|
| - "BrowserOptions.showAndroidAppsSection",
|
| - is_arc_enabled);
|
| + "BrowserOptions.showAndroidAppsSection", is_play_store_enabled);
|
| // Get the initial state of Android Settings app readiness.
|
| std::unique_ptr<ArcAppListPrefs::AppInfo> app_info =
|
| ArcAppListPrefs::Get(profile)->GetApp(arc::kSettingsAppId);
|
|
|