| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_OOBE_UI_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 } // namespace base | 29 } // namespace base |
| 30 | 30 |
| 31 namespace chromeos { | 31 namespace chromeos { |
| 32 class AppLaunchSplashScreenView; | 32 class AppLaunchSplashScreenView; |
| 33 class ArcKioskSplashScreenView; | 33 class ArcKioskSplashScreenView; |
| 34 class ArcTermsOfServiceScreenView; | 34 class ArcTermsOfServiceScreenView; |
| 35 class AutoEnrollmentCheckScreenView; | 35 class AutoEnrollmentCheckScreenView; |
| 36 class BaseScreenHandler; | 36 class BaseScreenHandler; |
| 37 class ControllerPairingScreenView; | 37 class ControllerPairingScreenView; |
| 38 class CoreOobeView; | 38 class CoreOobeView; |
| 39 class DeviceDisabledScreenView; | |
| 40 class EnrollmentScreenView; | 39 class EnrollmentScreenView; |
| 41 class EulaView; | 40 class EulaView; |
| 42 class ErrorScreen; | 41 class ErrorScreen; |
| 43 class GaiaView; | 42 class GaiaView; |
| 44 class HIDDetectionView; | 43 class HIDDetectionView; |
| 45 class HostPairingScreenView; | 44 class HostPairingScreenView; |
| 46 class KioskAppMenuHandler; | 45 class KioskAppMenuHandler; |
| 47 class KioskAutolaunchScreenView; | 46 class KioskAutolaunchScreenView; |
| 48 class KioskEnableScreenView; | 47 class KioskEnableScreenView; |
| 49 class LoginScreenContext; | 48 class LoginScreenContext; |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 UserImageView* GetUserImageView(); | 104 UserImageView* GetUserImageView(); |
| 106 ErrorScreen* GetErrorScreen(); | 105 ErrorScreen* GetErrorScreen(); |
| 107 WrongHWIDScreenView* GetWrongHWIDScreenView(); | 106 WrongHWIDScreenView* GetWrongHWIDScreenView(); |
| 108 AutoEnrollmentCheckScreenView* GetAutoEnrollmentCheckScreenView(); | 107 AutoEnrollmentCheckScreenView* GetAutoEnrollmentCheckScreenView(); |
| 109 SupervisedUserCreationScreenHandler* GetSupervisedUserCreationScreenView(); | 108 SupervisedUserCreationScreenHandler* GetSupervisedUserCreationScreenView(); |
| 110 AppLaunchSplashScreenView* GetAppLaunchSplashScreenView(); | 109 AppLaunchSplashScreenView* GetAppLaunchSplashScreenView(); |
| 111 ArcKioskSplashScreenView* GetArcKioskSplashScreenView(); | 110 ArcKioskSplashScreenView* GetArcKioskSplashScreenView(); |
| 112 HIDDetectionView* GetHIDDetectionView(); | 111 HIDDetectionView* GetHIDDetectionView(); |
| 113 ControllerPairingScreenView* GetControllerPairingScreenView(); | 112 ControllerPairingScreenView* GetControllerPairingScreenView(); |
| 114 HostPairingScreenView* GetHostPairingScreenView(); | 113 HostPairingScreenView* GetHostPairingScreenView(); |
| 115 DeviceDisabledScreenView* GetDeviceDisabledScreenView(); | |
| 116 GaiaView* GetGaiaScreenView(); | 114 GaiaView* GetGaiaScreenView(); |
| 117 UserBoardView* GetUserBoardView(); | 115 UserBoardView* GetUserBoardView(); |
| 118 | 116 |
| 119 // ShutdownPolicyHandler::Delegate | 117 // ShutdownPolicyHandler::Delegate |
| 120 void OnShutdownPolicyChanged(bool reboot_on_shutdown) override; | 118 void OnShutdownPolicyChanged(bool reboot_on_shutdown) override; |
| 121 | 119 |
| 122 // Collects localized strings from the owned handlers. | 120 // Collects localized strings from the owned handlers. |
| 123 void GetLocalizedStrings(base::DictionaryValue* localized_strings); | 121 void GetLocalizedStrings(base::DictionaryValue* localized_strings); |
| 124 | 122 |
| 125 // Initializes the handlers. | 123 // Initializes the handlers. |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 // Store the deferred JS calls before the screen handler instance is | 243 // Store the deferred JS calls before the screen handler instance is |
| 246 // initialized. | 244 // initialized. |
| 247 std::unique_ptr<JSCallsContainer> js_calls_container; | 245 std::unique_ptr<JSCallsContainer> js_calls_container; |
| 248 | 246 |
| 249 DISALLOW_COPY_AND_ASSIGN(OobeUI); | 247 DISALLOW_COPY_AND_ASSIGN(OobeUI); |
| 250 }; | 248 }; |
| 251 | 249 |
| 252 } // namespace chromeos | 250 } // namespace chromeos |
| 253 | 251 |
| 254 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ | 252 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ |
| OLD | NEW |