login_status.h 682 B

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