| Index: chrome/browser/ui/webui/settings/chromeos/android_apps_handler.cc
|
| diff --git a/chrome/browser/ui/webui/settings/chromeos/android_apps_handler.cc b/chrome/browser/ui/webui/settings/chromeos/android_apps_handler.cc
|
| index e171073448e00a3c19b417403f16032ad6656ff4..3dbd8c6d293254e174bf3f55840c5a3b21a4fe32 100644
|
| --- a/chrome/browser/ui/webui/settings/chromeos/android_apps_handler.cc
|
| +++ b/chrome/browser/ui/webui/settings/chromeos/android_apps_handler.cc
|
| @@ -6,7 +6,6 @@
|
|
|
| #include "base/values.h"
|
| #include "chrome/browser/chromeos/arc/arc_session_manager.h"
|
| -#include "chrome/browser/chromeos/arc/arc_util.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/ui/app_list/arc/arc_app_utils.h" // kSettingsAppId
|
| #include "ui/events/event_constants.h"
|
| @@ -93,7 +92,7 @@
|
| int flags = activated_from_keyboard ? ui::EF_NONE : ui::EF_LEFT_MOUSE_BUTTON;
|
|
|
| // Settings in secondary profile cannot access ARC.
|
| - CHECK(arc::IsArcAllowedForProfile(profile_));
|
| + CHECK(arc::ArcSessionManager::IsAllowedForProfile(profile_));
|
| arc::LaunchAndroidSettingsApp(profile_, flags);
|
| }
|
|
|
|
|