| 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 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 // access. | 397 // access. |
| 398 FlowMap specific_flows_; | 398 FlowMap specific_flows_; |
| 399 | 399 |
| 400 // User sessions that have to be restored after browser crash. | 400 // User sessions that have to be restored after browser crash. |
| 401 // [user_id] > [user_id_hash] | 401 // [user_id] > [user_id_hash] |
| 402 SessionManagerClient::ActiveSessionsMap pending_user_sessions_; | 402 SessionManagerClient::ActiveSessionsMap pending_user_sessions_; |
| 403 | 403 |
| 404 // Time at which this object was created. | 404 // Time at which this object was created. |
| 405 base::TimeTicks manager_creation_time_; | 405 base::TimeTicks manager_creation_time_; |
| 406 | 406 |
| 407 scoped_ptr<CrosSettings::ObserverSubscription> |
| 408 local_accounts_subscription_; |
| 409 scoped_ptr<CrosSettings::ObserverSubscription> |
| 410 supervised_users_subscription_; |
| 411 |
| 407 DISALLOW_COPY_AND_ASSIGN(UserManagerImpl); | 412 DISALLOW_COPY_AND_ASSIGN(UserManagerImpl); |
| 408 }; | 413 }; |
| 409 | 414 |
| 410 } // namespace chromeos | 415 } // namespace chromeos |
| 411 | 416 |
| 412 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_IMPL_H_ | 417 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_IMPL_H_ |
| OLD | NEW |