| Index: chrome/browser/chromeos/login/wizard_controller.cc
|
| diff --git a/chrome/browser/chromeos/login/wizard_controller.cc b/chrome/browser/chromeos/login/wizard_controller.cc
|
| index b4ad845ac1a7ee377fa3d7d3c13933c61d43d93c..39b5604b3413c0469aa96a2eec0151c137864beb 100644
|
| --- a/chrome/browser/chromeos/login/wizard_controller.cc
|
| +++ b/chrome/browser/chromeos/login/wizard_controller.cc
|
| @@ -27,7 +27,7 @@
|
| #include "chrome/browser/chrome_notification_types.h"
|
| #include "chrome/browser/chromeos/accessibility/accessibility_manager.h"
|
| #include "chrome/browser/chromeos/app_mode/kiosk_app_manager.h"
|
| -#include "chrome/browser/chromeos/arc/arc_session_manager.h"
|
| +#include "chrome/browser/chromeos/arc/arc_util.h"
|
| #include "chrome/browser/chromeos/customization/customization_document.h"
|
| #include "chrome/browser/chromeos/login/enrollment/auto_enrollment_check_screen.h"
|
| #include "chrome/browser/chromeos/login/enrollment/enrollment_screen.h"
|
| @@ -554,7 +554,7 @@ void WizardController::ShowArcTermsOfServiceScreen() {
|
| } else if (!user_manager::UserManager::Get()->IsUserLoggedIn()) {
|
| VLOG(1) << "Skip Arc Terms of Service screen because user is not "
|
| << "logged in.";
|
| - } else if (!arc::ArcSessionManager::IsAllowedForProfile(profile)) {
|
| + } else if (!arc::IsArcAllowedForProfile(profile)) {
|
| VLOG(1) << "Skip Arc Terms of Service screen because Arc is not allowed.";
|
| } else if (profile->GetPrefs()->IsManagedPreference(prefs::kArcEnabled) &&
|
| !profile->GetPrefs()->GetBoolean(prefs::kArcEnabled)) {
|
|
|