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

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

Issue 900553006: Updated KioskAppManager to track whether an app was auto-launched. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review feedback Created 5 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
« no previous file with comments | « chrome/browser/chromeos/login/ui/mock_login_display_host.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 55b0d60d0d36d7bd606ab335860611c304bfc491..8ec067b10d9772a06920f9d4ad0bddc74de9413f 100644
--- a/chrome/browser/chromeos/login/wizard_controller.cc
+++ b/chrome/browser/chromeos/login/wizard_controller.cc
@@ -1111,7 +1111,9 @@ void WizardController::AutoLaunchKioskApp() {
return;
}
- host_->StartAppLaunch(app_id, false /* diagnostic_mode */);
+ const bool diagnostic_mode = false;
+ const bool auto_launch = true;
+ host_->StartAppLaunch(app_id, diagnostic_mode, auto_launch);
}
// static
« no previous file with comments | « chrome/browser/chromeos/login/ui/mock_login_display_host.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698