Chromium Code Reviews| Index: components/user_manager/user_type.h |
| diff --git a/components/user_manager/user_type.h b/components/user_manager/user_type.h |
| index 249dfe5e137ff639fc52879d6ed219c86f355c9d..be4dd4cdeb9ccff41b8198743d3a2d7e0e5b81b1 100644 |
| --- a/components/user_manager/user_type.h |
| +++ b/components/user_manager/user_type.h |
| @@ -13,18 +13,15 @@ typedef enum { |
| USER_TYPE_REGULAR = 0, |
| // Guest user, logs in without authentication. |
| USER_TYPE_GUEST = 1, |
| - // Retail mode user, logs in without authentication. This is a special user |
| - // type used in retail mode only. |
| - USER_TYPE_RETAIL_MODE = 2, |
| // Public account user, logs in without authentication. Available only if |
| // enabled through policy. |
| - USER_TYPE_PUBLIC_ACCOUNT = 3, |
| + USER_TYPE_PUBLIC_ACCOUNT = 2, |
|
Nikita (slow)
2014/10/01 07:13:01
Please leave constant values as is. See above "Use
rkc
2014/10/01 17:29:52
Done.
|
| // Supervised user, logs in only with local authentication. |
| - USER_TYPE_SUPERVISED = 4, |
| + USER_TYPE_SUPERVISED = 3, |
| // Kiosk app robot, logs in without authentication. |
| - USER_TYPE_KIOSK_APP = 5, |
| + USER_TYPE_KIOSK_APP = 4, |
| // Maximum histogram value. |
| - NUM_USER_TYPES = 6 |
| + NUM_USER_TYPES = 5 |
| } UserType; |
| } // namespace user_manager |