Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3759)

Unified Diff: chrome/browser/chromeos/login/arc_kiosk_controller.cc

Issue 2700303002: cros: Unify oobe View/Actor naming to just View. (Closed)
Patch Set: Rebase Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 b895e97c3c94efd232b6ef4237b6b637b612990a..2f467140c3a7ac746aaed37c3f2e3c0da38e638d 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() {

Powered by Google App Engine
This is Rietveld 408576698