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

Unified Diff: ash/public/interfaces/session_controller.mojom

Issue 2911493002: cros: Pull user info from session_controller_client.mojom into separate mojom. (Closed)
Patch Set: Fix ordering in typemaps Created 3 years, 7 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 | « ash/public/interfaces/BUILD.gn ('k') | ash/public/interfaces/session_controller.typemap » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/public/interfaces/session_controller.mojom
diff --git a/ash/public/interfaces/session_controller.mojom b/ash/public/interfaces/session_controller.mojom
index 246b2ba93c35fa95b51bc2b06ff8f7ba8ffc7c84..4e902cda76cd007c288b7cd314fcb328e7188249 100644
--- a/ash/public/interfaces/session_controller.mojom
+++ b/ash/public/interfaces/session_controller.mojom
@@ -4,8 +4,8 @@
module ash.mojom;
+import "ash/public/interfaces/user_info.mojom";
import "components/signin/public/interfaces/account_id.mojom";
-import "ui/gfx/image/mojo/image.mojom";
// Matches session_manager::SessionState.
enum SessionState {
@@ -37,34 +37,6 @@ enum SessionState {
LOGIN_SECONDARY,
};
-// Matches user_manager::UserType.
-enum UserType {
- // Regular user, has a user name and password.
- REGULAR,
-
- // Guest user, logs in without authentication.
- GUEST,
-
- // Public account user, logs in without authentication. Available only if
- // enabled through policy.
- PUBLIC_ACCOUNT,
-
- // Supervised user, logs in only with local authentication.
- SUPERVISED,
-
- // Kiosk app robot, logs in without authentication.
- KIOSK,
-
- // Child user, with supervised options.
- CHILD,
-
- // Android app in kiosk mode, logs in without authentication.
- ARC_KIOSK,
-
- // Active Directory user. Authenticates against Active Directory server.
- ACTIVE_DIRECTORY,
-};
-
// Matches ash::CycleUserDirection.
enum CycleUserDirection {
NEXT, // Cycle to the next user.
@@ -80,11 +52,9 @@ struct UserSession {
// and incremented by one for each subsequent user session.
uint32 session_id;
- UserType type;
- signin.mojom.AccountId account_id;
- string display_name;
- string display_email;
- gfx.mojom.ImageSkia avatar;
+ // Contains general user information state, like the account id, display name,
+ // and avatar.
+ UserInfo user_info;
// For supervised users only, the email address of the custodian account.
// Empty for non-supervised users. Available after profile is loaded.
« no previous file with comments | « ash/public/interfaces/BUILD.gn ('k') | ash/public/interfaces/session_controller.typemap » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698