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 CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 28 matching lines...) Expand all Loading... |
39 namespace base { | 39 namespace base { |
40 class DictionaryValue; | 40 class DictionaryValue; |
41 class ListValue; | 41 class ListValue; |
42 } | 42 } |
43 | 43 |
44 namespace chromeos { | 44 namespace chromeos { |
45 | 45 |
46 class AuthenticatedUserEmailRetriever; | 46 class AuthenticatedUserEmailRetriever; |
47 class CaptivePortalWindowProxy; | 47 class CaptivePortalWindowProxy; |
48 class CoreOobeActor; | 48 class CoreOobeActor; |
| 49 class ErrorScreensHistogramHelper; |
49 class GaiaScreenHandler; | 50 class GaiaScreenHandler; |
50 class NativeWindowDelegate; | 51 class NativeWindowDelegate; |
51 class SupervisedUserCreationScreenHandler; | 52 class SupervisedUserCreationScreenHandler; |
52 class User; | 53 class User; |
53 class UserContext; | 54 class UserContext; |
54 | 55 |
55 // Helper class to pass initial parameters to the login screen. | 56 // Helper class to pass initial parameters to the login screen. |
56 class LoginScreenContext { | 57 class LoginScreenContext { |
57 public: | 58 public: |
58 LoginScreenContext(); | 59 LoginScreenContext(); |
(...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
494 | 495 |
495 // Helper that retrieves the authenticated user's e-mail address. | 496 // Helper that retrieves the authenticated user's e-mail address. |
496 scoped_ptr<AuthenticatedUserEmailRetriever> email_retriever_; | 497 scoped_ptr<AuthenticatedUserEmailRetriever> email_retriever_; |
497 | 498 |
498 // Maximized mode controller delegate. | 499 // Maximized mode controller delegate. |
499 scoped_ptr<TouchViewControllerDelegate> max_mode_delegate_; | 500 scoped_ptr<TouchViewControllerDelegate> max_mode_delegate_; |
500 | 501 |
501 // Whether consumer management enrollment is in progress. | 502 // Whether consumer management enrollment is in progress. |
502 bool is_enrolling_consumer_management_; | 503 bool is_enrolling_consumer_management_; |
503 | 504 |
| 505 scoped_ptr<ErrorScreensHistogramHelper> histogram_helper_; |
| 506 |
504 base::WeakPtrFactory<SigninScreenHandler> weak_factory_; | 507 base::WeakPtrFactory<SigninScreenHandler> weak_factory_; |
505 | 508 |
506 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); | 509 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); |
507 }; | 510 }; |
508 | 511 |
509 } // namespace chromeos | 512 } // namespace chromeos |
510 | 513 |
511 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 514 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
OLD | NEW |