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

Unified Diff: chrome/browser/chromeos/login/app_launch_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/app_launch_controller.cc
diff --git a/chrome/browser/chromeos/login/app_launch_controller.cc b/chrome/browser/chromeos/login/app_launch_controller.cc
index 9de81cdbdc6470b82e16078060874533c4142437..779c7dafda549f8c17be398b94df0e7785fbe25a 100644
--- a/chrome/browser/chromeos/login/app_launch_controller.cc
+++ b/chrome/browser/chromeos/login/app_launch_controller.cc
@@ -150,11 +150,11 @@ AppLaunchController::AppLaunchController(const std::string& app_id,
diagnostic_mode_(diagnostic_mode),
host_(host),
oobe_ui_(oobe_ui),
- app_launch_splash_screen_actor_(
- oobe_ui_->GetAppLaunchSplashScreenActor()) {}
+ app_launch_splash_screen_view_(oobe_ui_->GetAppLaunchSplashScreenView()) {
+}
AppLaunchController::~AppLaunchController() {
- app_launch_splash_screen_actor_->SetDelegate(NULL);
+ app_launch_splash_screen_view_->SetDelegate(NULL);
}
void AppLaunchController::StartAppLaunch(bool is_auto_launch) {
@@ -173,8 +173,8 @@ void AppLaunchController::StartAppLaunch(bool is_auto_launch) {
launch_splash_start_time_ = base::TimeTicks::Now().ToInternalValue();
// TODO(tengs): Add a loading profile app launch state.
- app_launch_splash_screen_actor_->SetDelegate(this);
- app_launch_splash_screen_actor_->Show(app_id_);
+ app_launch_splash_screen_view_->SetDelegate(this);
+ app_launch_splash_screen_view_->Show(app_id_);
KioskAppManager::App app;
CHECK(KioskAppManager::Get());
@@ -280,8 +280,8 @@ void AppLaunchController::OnNetworkConfigRequested(bool requested) {
if (requested) {
MaybeShowNetworkConfigureUI();
} else {
- app_launch_splash_screen_actor_->UpdateAppLaunchState(
- AppLaunchSplashScreenActor::APP_LAUNCH_STATE_PREPARING_NETWORK);
+ app_launch_splash_screen_view_->UpdateAppLaunchState(
+ AppLaunchSplashScreenView::APP_LAUNCH_STATE_PREPARING_NETWORK);
startup_app_launcher_->RestartLauncher();
}
}
@@ -381,28 +381,28 @@ void AppLaunchController::MaybeShowNetworkConfigureUI() {
if (network_config_requested_)
OnConfigureNetwork();
else
- app_launch_splash_screen_actor_->ToggleNetworkConfig(true);
+ app_launch_splash_screen_view_->ToggleNetworkConfig(true);
} else {
ShowNetworkConfigureUIWhenReady();
}
} else {
- app_launch_splash_screen_actor_->UpdateAppLaunchState(
- AppLaunchSplashScreenActor::APP_LAUNCH_STATE_NETWORK_WAIT_TIMEOUT);
+ app_launch_splash_screen_view_->UpdateAppLaunchState(
+ AppLaunchSplashScreenView::APP_LAUNCH_STATE_NETWORK_WAIT_TIMEOUT);
}
}
void AppLaunchController::ShowNetworkConfigureUIWhenReady() {
if (!profile_) {
show_network_config_ui_after_profile_load_ = true;
- app_launch_splash_screen_actor_->UpdateAppLaunchState(
- AppLaunchSplashScreenActor::
+ app_launch_splash_screen_view_->UpdateAppLaunchState(
+ AppLaunchSplashScreenView::
APP_LAUNCH_STATE_SHOWING_NETWORK_CONFIGURE_UI);
return;
}
show_network_config_ui_after_profile_load_ = false;
showing_network_dialog_ = true;
- app_launch_splash_screen_actor_->ShowNetworkConfigureUI();
+ app_launch_splash_screen_view_->ShowNetworkConfigureUI();
}
void AppLaunchController::InitializeNetwork() {
@@ -414,12 +414,12 @@ void AppLaunchController::InitializeNetwork() {
base::TimeDelta::FromSeconds(network_wait_time_),
this, &AppLaunchController::OnNetworkWaitTimedout);
- app_launch_splash_screen_actor_->UpdateAppLaunchState(
- AppLaunchSplashScreenActor::APP_LAUNCH_STATE_PREPARING_NETWORK);
+ app_launch_splash_screen_view_->UpdateAppLaunchState(
+ AppLaunchSplashScreenView::APP_LAUNCH_STATE_PREPARING_NETWORK);
}
bool AppLaunchController::IsNetworkReady() {
- return app_launch_splash_screen_actor_->IsNetworkReady();
+ return app_launch_splash_screen_view_->IsNetworkReady();
}
bool AppLaunchController::ShouldSkipAppInstallation() {
@@ -427,26 +427,26 @@ bool AppLaunchController::ShouldSkipAppInstallation() {
}
void AppLaunchController::OnLoadingOAuthFile() {
- app_launch_splash_screen_actor_->UpdateAppLaunchState(
- AppLaunchSplashScreenActor::APP_LAUNCH_STATE_LOADING_AUTH_FILE);
+ app_launch_splash_screen_view_->UpdateAppLaunchState(
+ AppLaunchSplashScreenView::APP_LAUNCH_STATE_LOADING_AUTH_FILE);
}
void AppLaunchController::OnInitializingTokenService() {
- app_launch_splash_screen_actor_->UpdateAppLaunchState(
- AppLaunchSplashScreenActor::APP_LAUNCH_STATE_LOADING_TOKEN_SERVICE);
+ app_launch_splash_screen_view_->UpdateAppLaunchState(
+ AppLaunchSplashScreenView::APP_LAUNCH_STATE_LOADING_TOKEN_SERVICE);
}
void AppLaunchController::OnInstallingApp() {
- app_launch_splash_screen_actor_->UpdateAppLaunchState(
- AppLaunchSplashScreenActor::APP_LAUNCH_STATE_INSTALLING_APPLICATION);
+ app_launch_splash_screen_view_->UpdateAppLaunchState(
+ AppLaunchSplashScreenView::APP_LAUNCH_STATE_INSTALLING_APPLICATION);
ClearNetworkWaitTimer();
- app_launch_splash_screen_actor_->ToggleNetworkConfig(false);
+ app_launch_splash_screen_view_->ToggleNetworkConfig(false);
// We have connectivity at this point, so we can skip the network
// configuration dialog if it is being shown.
if (showing_network_dialog_) {
- app_launch_splash_screen_actor_->Show(app_id_);
+ app_launch_splash_screen_view_->Show(app_id_);
showing_network_dialog_ = false;
launch_splash_start_time_ = base::TimeTicks::Now().ToInternalValue();
}
@@ -488,8 +488,8 @@ void AppLaunchController::OnReadyToLaunch() {
void AppLaunchController::OnLaunchSucceeded() {
DVLOG(1) << "Kiosk launch succeeded, wait for app window.";
- app_launch_splash_screen_actor_->UpdateAppLaunchState(
- AppLaunchSplashScreenActor::APP_LAUNCH_STATE_WAITING_APP_WINDOW);
+ app_launch_splash_screen_view_->UpdateAppLaunchState(
+ AppLaunchSplashScreenView::APP_LAUNCH_STATE_WAITING_APP_WINDOW);
DCHECK(!app_window_watcher_);
app_window_watcher_.reset(new AppWindowWatcher(this, app_id_));
« no previous file with comments | « chrome/browser/chromeos/login/app_launch_controller.h ('k') | chrome/browser/chromeos/login/arc_kiosk_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698