| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_IMPL_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_IMPL_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_IMPL_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_IMPL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 // access. | 391 // access. |
| 392 FlowMap specific_flows_; | 392 FlowMap specific_flows_; |
| 393 | 393 |
| 394 // User sessions that have to be restored after browser crash. | 394 // User sessions that have to be restored after browser crash. |
| 395 // [user_id] > [user_id_hash] | 395 // [user_id] > [user_id_hash] |
| 396 SessionManagerClient::ActiveSessionsMap pending_user_sessions_; | 396 SessionManagerClient::ActiveSessionsMap pending_user_sessions_; |
| 397 | 397 |
| 398 // Time at which this object was created. | 398 // Time at which this object was created. |
| 399 base::TimeTicks manager_creation_time_; | 399 base::TimeTicks manager_creation_time_; |
| 400 | 400 |
| 401 scoped_ptr<CrosSettings::ObserverSubscription> |
| 402 local_accounts_subscription_; |
| 403 scoped_ptr<CrosSettings::ObserverSubscription> |
| 404 supervised_users_subscription_; |
| 405 |
| 401 DISALLOW_COPY_AND_ASSIGN(UserManagerImpl); | 406 DISALLOW_COPY_AND_ASSIGN(UserManagerImpl); |
| 402 }; | 407 }; |
| 403 | 408 |
| 404 } // namespace chromeos | 409 } // namespace chromeos |
| 405 | 410 |
| 406 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_IMPL_H_ | 411 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_IMPL_H_ |
| OLD | NEW |