Added unit test for DevTools' ephemeral port support.
[chromium-blink-merge.git] / ash / system / user / login_status.h
blobd08a1604a06e94e7ca6851de8c5e676137c40060
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.
5 #ifndef ASH_SYSTEM_USER_LOGIN_STATUS_H_
6 #define ASH_SYSTEM_USER_LOGIN_STATUS_H_
8 #include "base/strings/string16.h"
10 namespace ash {
11 namespace user {
13 enum LoginStatus {
14 LOGGED_IN_NONE, // Not logged in
15 LOGGED_IN_LOCKED, // A user has locked the screen
16 LOGGED_IN_USER, // A regular user is logged in
17 LOGGED_IN_OWNER, // The owner of the device is logged in
18 LOGGED_IN_GUEST, // A guest is logged in (i.e. incognito)
19 LOGGED_IN_RETAIL_MODE, // Is in retail mode
20 LOGGED_IN_PUBLIC, // A public account is logged in
21 LOGGED_IN_LOCALLY_MANAGED, // A locally managed user is logged in
22 LOGGED_IN_KIOSK_APP // Is in kiosk app mode
25 base::string16 GetLocalizedSignOutStringForStatus(LoginStatus status,
26 bool multiline);
28 } // namespace user
29 } // namespace ash
31 #endif // ASH_SYSTEM_USER_LOGIN_STATUS_H_