| Index: chrome/browser/chromeos/login/arc_kiosk_controller.cc
|
| diff --git a/chrome/browser/chromeos/login/arc_kiosk_controller.cc b/chrome/browser/chromeos/login/arc_kiosk_controller.cc
|
| index 5330e2de138fb8498047e03212ef9a84ac2f14d7..b9c85f60e490a00ea22d7d2c539ea2d1488a204b 100644
|
| --- a/chrome/browser/chromeos/login/arc_kiosk_controller.cc
|
| +++ b/chrome/browser/chromeos/login/arc_kiosk_controller.cc
|
| @@ -26,7 +26,7 @@ constexpr base::TimeDelta kArcKioskSplashScreenMinTime =
|
|
|
| ArcKioskController::ArcKioskController(LoginDisplayHost* host, OobeUI* oobe_ui)
|
| : host_(host),
|
| - arc_kiosk_splash_screen_actor_(oobe_ui->GetArcKioskSplashScreenActor()),
|
| + arc_kiosk_splash_screen_actor_(oobe_ui->GetArcKioskSplashScreenView()),
|
| weak_ptr_factory_(this) {}
|
|
|
| ArcKioskController::~ArcKioskController() {
|
| @@ -108,13 +108,13 @@ void ArcKioskController::OnProfilePrepared(Profile* profile,
|
| UserSessionManager::GetInstance()->DelegateDeleted(this);
|
| ArcKioskAppService::Get(profile_)->SetDelegate(this);
|
| arc_kiosk_splash_screen_actor_->UpdateArcKioskState(
|
| - ArcKioskSplashScreenActor::ArcKioskState::WAITING_APP_LAUNCH);
|
| + ArcKioskSplashScreenView::ArcKioskState::WAITING_APP_LAUNCH);
|
| }
|
|
|
| void ArcKioskController::OnAppStarted() {
|
| DVLOG(1) << "ARC Kiosk launch succeeded, wait for app window.";
|
| arc_kiosk_splash_screen_actor_->UpdateArcKioskState(
|
| - ArcKioskSplashScreenActor::ArcKioskState::WAITING_APP_WINDOW);
|
| + ArcKioskSplashScreenView::ArcKioskState::WAITING_APP_WINDOW);
|
| }
|
|
|
| void ArcKioskController::OnAppWindowLaunched() {
|
|
|