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

Unified Diff: chrome/browser/chromeos/arc/arc_auth_service.cc

Issue 2102793002: arc: Implement silent OptIn mode for managed Arc. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update Created 4 years, 6 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/arc/arc_auth_service.cc
diff --git a/chrome/browser/chromeos/arc/arc_auth_service.cc b/chrome/browser/chromeos/arc/arc_auth_service.cc
index c356ea691b340b649605156d925c968547e7ffda..64973b0769f3595b940152b1c21b01dad9179eb7 100644
--- a/chrome/browser/chromeos/arc/arc_auth_service.cc
+++ b/chrome/browser/chromeos/arc/arc_auth_service.cc
@@ -672,7 +672,8 @@ void ArcAuthService::StartUI() {
if (initial_opt_in_) {
initial_opt_in_ = false;
- ShowUI(UIPage::START, base::string16());
+ ShowUI(IsArcManaged() ? UIPage::LSO_PROGRESS : UIPage::START,
+ base::string16());
} else if (context_prepared_) {
CheckAndroidManagement(false);
} else {

Powered by Google App Engine
This is Rietveld 408576698