1 // Copyright 2016 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.
4 
5 #ifndef ASH_LOGIN_STATUS_H_
6 #define ASH_LOGIN_STATUS_H_
7 
8 namespace ash {
9 
10 enum class LoginStatus {
11   NOT_LOGGED_IN,  // Not logged in
12   LOCKED,         // A user has locked the screen
13   USER,           // A regular user is logged in
14   GUEST,          // A guest is logged in (i.e. incognito)
15   PUBLIC,         // A public account is logged in
16   SUPERVISED,     // A supervised user is logged in
17   KIOSK_APP       // In kiosk mode for Chrome app, ARC, or PWA.
18 };
19 
20 }  // namespace ash
21 
22 #endif  // ASH_LOGIN_STATUS_H_
23