| 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 e5810693ffdd89a457e3e79182ec3316126610a5..977e0f9908b88bd6a29b024f7f2113bb8fac0161 100644
|
| --- a/chrome/browser/ui/webui/options/browser_options_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/browser_options_handler.cc
|
| @@ -1217,10 +1217,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);
|
|
|