| 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 14 matching lines...) Expand all Loading... |
| 25 } | 25 } |
| 26 | 26 |
| 27 namespace base { | 27 namespace base { |
| 28 class DictionaryValue; | 28 class DictionaryValue; |
| 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 VoiceInteractionValuePropScreenView; |
| 35 class AutoEnrollmentCheckScreenView; | 36 class AutoEnrollmentCheckScreenView; |
| 36 class BaseScreenHandler; | 37 class BaseScreenHandler; |
| 37 class ControllerPairingScreenView; | 38 class ControllerPairingScreenView; |
| 38 class CoreOobeView; | 39 class CoreOobeView; |
| 39 class DeviceDisabledScreenView; | 40 class DeviceDisabledScreenView; |
| 40 class EnableDebuggingScreenView; | 41 class EnableDebuggingScreenView; |
| 41 class EncryptionMigrationScreenView; | 42 class EncryptionMigrationScreenView; |
| 42 class EnrollmentScreenView; | 43 class EnrollmentScreenView; |
| 43 class EulaView; | 44 class EulaView; |
| 44 class ErrorScreen; | 45 class ErrorScreen; |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 WrongHWIDScreenView* GetWrongHWIDScreenView(); | 111 WrongHWIDScreenView* GetWrongHWIDScreenView(); |
| 111 AutoEnrollmentCheckScreenView* GetAutoEnrollmentCheckScreenView(); | 112 AutoEnrollmentCheckScreenView* GetAutoEnrollmentCheckScreenView(); |
| 112 SupervisedUserCreationScreenHandler* GetSupervisedUserCreationScreenView(); | 113 SupervisedUserCreationScreenHandler* GetSupervisedUserCreationScreenView(); |
| 113 AppLaunchSplashScreenView* GetAppLaunchSplashScreenView(); | 114 AppLaunchSplashScreenView* GetAppLaunchSplashScreenView(); |
| 114 ArcKioskSplashScreenView* GetArcKioskSplashScreenView(); | 115 ArcKioskSplashScreenView* GetArcKioskSplashScreenView(); |
| 115 HIDDetectionView* GetHIDDetectionView(); | 116 HIDDetectionView* GetHIDDetectionView(); |
| 116 ControllerPairingScreenView* GetControllerPairingScreenView(); | 117 ControllerPairingScreenView* GetControllerPairingScreenView(); |
| 117 HostPairingScreenView* GetHostPairingScreenView(); | 118 HostPairingScreenView* GetHostPairingScreenView(); |
| 118 DeviceDisabledScreenView* GetDeviceDisabledScreenView(); | 119 DeviceDisabledScreenView* GetDeviceDisabledScreenView(); |
| 119 EncryptionMigrationScreenView* GetEncryptionMigrationScreenView(); | 120 EncryptionMigrationScreenView* GetEncryptionMigrationScreenView(); |
| 121 VoiceInteractionValuePropScreenView* GetVoiceInteractionValuePropScreenView(); |
| 120 GaiaView* GetGaiaScreenView(); | 122 GaiaView* GetGaiaScreenView(); |
| 121 UserBoardView* GetUserBoardView(); | 123 UserBoardView* GetUserBoardView(); |
| 122 | 124 |
| 123 // ShutdownPolicyHandler::Delegate | 125 // ShutdownPolicyHandler::Delegate |
| 124 void OnShutdownPolicyChanged(bool reboot_on_shutdown) override; | 126 void OnShutdownPolicyChanged(bool reboot_on_shutdown) override; |
| 125 | 127 |
| 126 // Collects localized strings from the owned handlers. | 128 // Collects localized strings from the owned handlers. |
| 127 void GetLocalizedStrings(base::DictionaryValue* localized_strings); | 129 void GetLocalizedStrings(base::DictionaryValue* localized_strings); |
| 128 | 130 |
| 129 // Initializes the handlers. | 131 // Initializes the handlers. |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 // Store the deferred JS calls before the screen handler instance is | 252 // Store the deferred JS calls before the screen handler instance is |
| 251 // initialized. | 253 // initialized. |
| 252 std::unique_ptr<JSCallsContainer> js_calls_container; | 254 std::unique_ptr<JSCallsContainer> js_calls_container; |
| 253 | 255 |
| 254 DISALLOW_COPY_AND_ASSIGN(OobeUI); | 256 DISALLOW_COPY_AND_ASSIGN(OobeUI); |
| 255 }; | 257 }; |
| 256 | 258 |
| 257 } // namespace chromeos | 259 } // namespace chromeos |
| 258 | 260 |
| 259 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ | 261 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ |
| OLD | NEW |