OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_SESSION_USER_SESSION_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SESSION_USER_SESSION_MANAGER_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SESSION_USER_SESSION_MANAGER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SESSION_USER_SESSION_MANAGER_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
499 | 499 |
500 std::unique_ptr<TokenHandleUtil> token_handle_util_; | 500 std::unique_ptr<TokenHandleUtil> token_handle_util_; |
501 std::unique_ptr<TokenHandleFetcher> token_handle_fetcher_; | 501 std::unique_ptr<TokenHandleFetcher> token_handle_fetcher_; |
502 | 502 |
503 // Whether should launch browser, tests may override this value. | 503 // Whether should launch browser, tests may override this value. |
504 bool should_launch_browser_; | 504 bool should_launch_browser_; |
505 | 505 |
506 // Child account status is necessary for InitializeStartUrls call. | 506 // Child account status is necessary for InitializeStartUrls call. |
507 bool waiting_for_child_account_status_; | 507 bool waiting_for_child_account_status_; |
508 | 508 |
509 scoped_refptr<typename HatsNotificationController::HatsNotificationController> | 509 scoped_refptr<HatsNotificationController> hats_notification_controller_; |
510 hats_notification_controller_; | |
511 | 510 |
512 base::WeakPtrFactory<UserSessionManager> weak_factory_; | 511 base::WeakPtrFactory<UserSessionManager> weak_factory_; |
513 | 512 |
514 DISALLOW_COPY_AND_ASSIGN(UserSessionManager); | 513 DISALLOW_COPY_AND_ASSIGN(UserSessionManager); |
515 }; | 514 }; |
516 | 515 |
517 } // namespace chromeos | 516 } // namespace chromeos |
518 | 517 |
519 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SESSION_USER_SESSION_MANAGER_H_ | 518 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SESSION_USER_SESSION_MANAGER_H_ |
OLD | NEW |