1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_USER_MANAGER_USER_TYPE_H_
6 #define COMPONENTS_USER_MANAGER_USER_TYPE_H_
8 namespace user_manager
{
10 // The user type. Used in a histogram; do not modify existing types.
12 // Regular user, has a user name and password.
13 USER_TYPE_REGULAR
= 0,
14 // Guest user, logs in without authentication.
16 /* USER_TYPE_RETAIL_MODE = 2, // deprecated */
17 // Public account user, logs in without authentication. Available only if
18 // enabled through policy.
19 USER_TYPE_PUBLIC_ACCOUNT
= 3,
20 // Supervised user, logs in only with local authentication.
21 USER_TYPE_SUPERVISED
= 4,
22 // Kiosk app robot, logs in without authentication.
23 USER_TYPE_KIOSK_APP
= 5,
24 // Child user, with supervised options.
26 // Maximum histogram value.
30 } // namespace user_manager
32 #endif // COMPONENTS_USER_MANAGER_USER_TYPE_H_