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 27 matching lines...) Expand all Loading... |
38 namespace base { | 38 namespace base { |
39 class DictionaryValue; | 39 class DictionaryValue; |
40 class ListValue; | 40 class ListValue; |
41 } | 41 } |
42 | 42 |
43 namespace chromeos { | 43 namespace chromeos { |
44 | 44 |
45 class AuthenticatedUserEmailRetriever; | 45 class AuthenticatedUserEmailRetriever; |
46 class CaptivePortalWindowProxy; | 46 class CaptivePortalWindowProxy; |
47 class CoreOobeActor; | 47 class CoreOobeActor; |
| 48 class ErrorScreensHistogramHelper; |
48 class GaiaScreenHandler; | 49 class GaiaScreenHandler; |
49 class NativeWindowDelegate; | 50 class NativeWindowDelegate; |
50 class SupervisedUserCreationScreenHandler; | 51 class SupervisedUserCreationScreenHandler; |
51 class User; | 52 class User; |
52 class UserContext; | 53 class UserContext; |
53 | 54 |
54 // Helper class to pass initial parameters to the login screen. | 55 // Helper class to pass initial parameters to the login screen. |
55 class LoginScreenContext { | 56 class LoginScreenContext { |
56 public: | 57 public: |
57 LoginScreenContext(); | 58 LoginScreenContext(); |
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
484 // Non-owning ptr. | 485 // Non-owning ptr. |
485 // TODO(ygorshenin@): remove this dependency. | 486 // TODO(ygorshenin@): remove this dependency. |
486 GaiaScreenHandler* gaia_screen_handler_; | 487 GaiaScreenHandler* gaia_screen_handler_; |
487 | 488 |
488 // Helper that retrieves the authenticated user's e-mail address. | 489 // Helper that retrieves the authenticated user's e-mail address. |
489 scoped_ptr<AuthenticatedUserEmailRetriever> email_retriever_; | 490 scoped_ptr<AuthenticatedUserEmailRetriever> email_retriever_; |
490 | 491 |
491 // Whether consumer management enrollment is in progress. | 492 // Whether consumer management enrollment is in progress. |
492 bool is_enrolling_consumer_management_; | 493 bool is_enrolling_consumer_management_; |
493 | 494 |
| 495 scoped_ptr<ErrorScreensHistogramHelper> histogram_helper_; |
| 496 |
494 base::WeakPtrFactory<SigninScreenHandler> weak_factory_; | 497 base::WeakPtrFactory<SigninScreenHandler> weak_factory_; |
495 | 498 |
496 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); | 499 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); |
497 }; | 500 }; |
498 | 501 |
499 } // namespace chromeos | 502 } // namespace chromeos |
500 | 503 |
501 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 504 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
OLD | NEW |