| 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 20 matching lines...) Expand all Loading... |
| 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; | 39 class DeviceDisabledScreenView; |
| 40 class EnableDebuggingScreenView; | 40 class EnableDebuggingScreenView; |
| 41 class EncryptionMigrationScreenView; |
| 41 class EnrollmentScreenView; | 42 class EnrollmentScreenView; |
| 42 class EulaView; | 43 class EulaView; |
| 43 class ErrorScreen; | 44 class ErrorScreen; |
| 44 class GaiaView; | 45 class GaiaView; |
| 45 class HIDDetectionView; | 46 class HIDDetectionView; |
| 46 class HostPairingScreenView; | 47 class HostPairingScreenView; |
| 47 class KioskAppMenuHandler; | 48 class KioskAppMenuHandler; |
| 48 class KioskAutolaunchScreenView; | 49 class KioskAutolaunchScreenView; |
| 49 class KioskEnableScreenView; | 50 class KioskEnableScreenView; |
| 50 class LoginScreenContext; | 51 class LoginScreenContext; |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 ErrorScreen* GetErrorScreen(); | 108 ErrorScreen* GetErrorScreen(); |
| 108 WrongHWIDScreenView* GetWrongHWIDScreenView(); | 109 WrongHWIDScreenView* GetWrongHWIDScreenView(); |
| 109 AutoEnrollmentCheckScreenView* GetAutoEnrollmentCheckScreenView(); | 110 AutoEnrollmentCheckScreenView* GetAutoEnrollmentCheckScreenView(); |
| 110 SupervisedUserCreationScreenHandler* GetSupervisedUserCreationScreenView(); | 111 SupervisedUserCreationScreenHandler* GetSupervisedUserCreationScreenView(); |
| 111 AppLaunchSplashScreenView* GetAppLaunchSplashScreenView(); | 112 AppLaunchSplashScreenView* GetAppLaunchSplashScreenView(); |
| 112 ArcKioskSplashScreenView* GetArcKioskSplashScreenView(); | 113 ArcKioskSplashScreenView* GetArcKioskSplashScreenView(); |
| 113 HIDDetectionView* GetHIDDetectionView(); | 114 HIDDetectionView* GetHIDDetectionView(); |
| 114 ControllerPairingScreenView* GetControllerPairingScreenView(); | 115 ControllerPairingScreenView* GetControllerPairingScreenView(); |
| 115 HostPairingScreenView* GetHostPairingScreenView(); | 116 HostPairingScreenView* GetHostPairingScreenView(); |
| 116 DeviceDisabledScreenView* GetDeviceDisabledScreenView(); | 117 DeviceDisabledScreenView* GetDeviceDisabledScreenView(); |
| 118 EncryptionMigrationScreenView* GetEncryptionMigrationScreenView(); |
| 117 GaiaView* GetGaiaScreenView(); | 119 GaiaView* GetGaiaScreenView(); |
| 118 UserBoardView* GetUserBoardView(); | 120 UserBoardView* GetUserBoardView(); |
| 119 | 121 |
| 120 // ShutdownPolicyHandler::Delegate | 122 // ShutdownPolicyHandler::Delegate |
| 121 void OnShutdownPolicyChanged(bool reboot_on_shutdown) override; | 123 void OnShutdownPolicyChanged(bool reboot_on_shutdown) override; |
| 122 | 124 |
| 123 // Collects localized strings from the owned handlers. | 125 // Collects localized strings from the owned handlers. |
| 124 void GetLocalizedStrings(base::DictionaryValue* localized_strings); | 126 void GetLocalizedStrings(base::DictionaryValue* localized_strings); |
| 125 | 127 |
| 126 // Initializes the handlers. | 128 // Initializes the handlers. |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 // Store the deferred JS calls before the screen handler instance is | 244 // Store the deferred JS calls before the screen handler instance is |
| 243 // initialized. | 245 // initialized. |
| 244 std::unique_ptr<JSCallsContainer> js_calls_container; | 246 std::unique_ptr<JSCallsContainer> js_calls_container; |
| 245 | 247 |
| 246 DISALLOW_COPY_AND_ASSIGN(OobeUI); | 248 DISALLOW_COPY_AND_ASSIGN(OobeUI); |
| 247 }; | 249 }; |
| 248 | 250 |
| 249 } // namespace chromeos | 251 } // namespace chromeos |
| 250 | 252 |
| 251 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ | 253 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ |
| OLD | NEW |