OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012 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_SYSTEM_USER_LOGIN_STATUS_H_ |
| 6 #define ASH_SYSTEM_USER_LOGIN_STATUS_H_ |
| 7 |
| 8 namespace ash { |
| 9 namespace user { |
| 10 |
| 11 enum LoginStatus { |
| 12 LOGGED_IN_USER, // A normal user is logged in. |
| 13 LOGGED_IN_OWNER, // The owner of the device is logged in. |
| 14 LOGGED_IN_GUEST, // A guest is logged in (i.e. incognito) |
| 15 LOGGED_IN_NONE, // Not logged in. |
| 16 }; |
| 17 |
| 18 } // namespace user |
| 19 } // namespace ash |
| 20 |
| 21 #endif // ASH_SYSTEM_USER_LOGIN_STATUS_H_ |
OLD | NEW |