OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROMEOS_LOGIN_LOGIN_STATE_H_ | 5 #ifndef CHROMEOS_LOGIN_LOGIN_STATE_H_ |
6 #define CHROMEOS_LOGIN_LOGIN_STATE_H_ | 6 #define CHROMEOS_LOGIN_LOGIN_STATE_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/observer_list.h" | 9 #include "base/observer_list.h" |
10 #include "chromeos/chromeos_export.h" | 10 #include "chromeos/chromeos_export.h" |
11 | 11 |
12 namespace chromeos { | 12 namespace chromeos { |
13 | 13 |
14 // Tracks the login state of chrome, accessible to Ash and other chromeos code. | 14 // Tracks the login state of chrome, accessible to Ash and other chromeos code. |
15 class CHROMEOS_EXPORT LoginState { | 15 class CHROMEOS_EXPORT LoginState { |
16 public: | 16 public: |
17 enum LoggedInState { | 17 enum LoggedInState { |
18 LOGGED_IN_OOBE, // Out of box experience not completed | |
19 LOGGED_IN_NONE, // Not logged in | 18 LOGGED_IN_NONE, // Not logged in |
20 LOGGED_IN_SAFE_MODE, // Not logged in and login not allowed for non-owners | 19 LOGGED_IN_SAFE_MODE, // Not logged in and login not allowed for non-owners |
21 LOGGED_IN_ACTIVE // A user has logged in | 20 LOGGED_IN_ACTIVE // A user has logged in |
22 }; | 21 }; |
23 | 22 |
24 enum LoggedInUserType { | 23 enum LoggedInUserType { |
25 LOGGED_IN_USER_NONE, // User is not logged in | 24 LOGGED_IN_USER_NONE, // User is not logged in |
26 LOGGED_IN_USER_REGULAR, // A regular user is logged in | 25 LOGGED_IN_USER_REGULAR, // A regular user is logged in |
27 LOGGED_IN_USER_OWNER, // The owner of the device is logged in | 26 LOGGED_IN_USER_OWNER, // The owner of the device is logged in |
28 LOGGED_IN_USER_GUEST, // A guest is logged in (i.e. incognito) | 27 LOGGED_IN_USER_GUEST, // A guest is logged in (i.e. incognito) |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 // default running on a Linux desktop without flags and test cases. To test | 109 // default running on a Linux desktop without flags and test cases. To test |
111 // behaviors with a specific login state, call set_always_logged_in(false). | 110 // behaviors with a specific login state, call set_always_logged_in(false). |
112 bool always_logged_in_; | 111 bool always_logged_in_; |
113 | 112 |
114 DISALLOW_COPY_AND_ASSIGN(LoginState); | 113 DISALLOW_COPY_AND_ASSIGN(LoginState); |
115 }; | 114 }; |
116 | 115 |
117 } // namespace chromeos | 116 } // namespace chromeos |
118 | 117 |
119 #endif // CHROMEOS_LOGIN_LOGIN_STATE_H_ | 118 #endif // CHROMEOS_LOGIN_LOGIN_STATE_H_ |
OLD | NEW |