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

Unified Diff: components/user_manager/user_manager_base.cc

Issue 2498613003: Add ARC++ kiosk menu items and ability to start kiosk session. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing comments + unit test build fix. Created 4 years, 1 month 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: components/user_manager/user_manager_base.cc
diff --git a/components/user_manager/user_manager_base.cc b/components/user_manager/user_manager_base.cc
index 3d13494f3d5b7761b74f69f9ad911fd1c2e4a34d..63cb1f8b486992dd8e0ceab63871aa6778430420 100644
--- a/components/user_manager/user_manager_base.cc
+++ b/components/user_manager/user_manager_base.cc
@@ -161,6 +161,8 @@ void UserManagerBase::UserLoggedIn(const AccountId& account_id,
PublicAccountUserLoggedIn(user);
} else if (user && user->GetType() == USER_TYPE_KIOSK_APP) {
KioskAppLoggedIn(user);
+ } else if (user && user->GetType() == USER_TYPE_ARC_KIOSK_APP) {
+ ArcKioskAppLoggedIn(user);
} else if ((user && user->GetType() == USER_TYPE_SUPERVISED) ||
(!user && IsSupervisedAccountId(account_id))) {
SupervisedUserLoggedIn(account_id);

Powered by Google App Engine
This is Rietveld 408576698