| 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 23 matching lines...) Expand all Loading... |
| 34 class AutoEnrollmentCheckScreenView; | 34 class AutoEnrollmentCheckScreenView; |
| 35 class BaseScreenHandler; | 35 class BaseScreenHandler; |
| 36 class ControllerPairingScreenView; | 36 class ControllerPairingScreenView; |
| 37 class CoreOobeView; | 37 class CoreOobeView; |
| 38 class DeviceDisabledScreenView; | 38 class DeviceDisabledScreenView; |
| 39 class EnableDebuggingScreenView; | 39 class EnableDebuggingScreenView; |
| 40 class EnrollmentScreenView; | 40 class EnrollmentScreenView; |
| 41 class EulaView; | 41 class EulaView; |
| 42 class ErrorScreen; | 42 class ErrorScreen; |
| 43 class ErrorScreenHandler; | 43 class ErrorScreenHandler; |
| 44 class GaiaView; |
| 44 class GaiaScreenHandler; | 45 class GaiaScreenHandler; |
| 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; |
| 51 class NativeWindowDelegate; | 52 class NativeWindowDelegate; |
| 52 class NetworkDropdownHandler; | 53 class NetworkDropdownHandler; |
| 53 class NetworkStateInformer; | 54 class NetworkStateInformer; |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 ErrorScreen* GetErrorScreen(); | 110 ErrorScreen* GetErrorScreen(); |
| 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 GaiaScreenHandler* GetGaiaScreenView(); | 120 GaiaView* GetGaiaScreenView(); |
| 120 UserBoardView* GetUserBoardView(); | 121 UserBoardView* GetUserBoardView(); |
| 121 | 122 |
| 122 // ShutdownPolicyHandler::Delegate | 123 // ShutdownPolicyHandler::Delegate |
| 123 void OnShutdownPolicyChanged(bool reboot_on_shutdown) override; | 124 void OnShutdownPolicyChanged(bool reboot_on_shutdown) override; |
| 124 | 125 |
| 125 // Collects localized strings from the owned handlers. | 126 // Collects localized strings from the owned handlers. |
| 126 void GetLocalizedStrings(base::DictionaryValue* localized_strings); | 127 void GetLocalizedStrings(base::DictionaryValue* localized_strings); |
| 127 | 128 |
| 128 // Initializes the handlers. | 129 // Initializes the handlers. |
| 129 void InitializeHandlers(); | 130 void InitializeHandlers(); |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 std::unique_ptr<ShutdownPolicyHandler> shutdown_policy_handler_; | 259 std::unique_ptr<ShutdownPolicyHandler> shutdown_policy_handler_; |
| 259 | 260 |
| 260 std::unique_ptr<ash::ScreenDimmer> screen_dimmer_; | 261 std::unique_ptr<ash::ScreenDimmer> screen_dimmer_; |
| 261 | 262 |
| 262 DISALLOW_COPY_AND_ASSIGN(OobeUI); | 263 DISALLOW_COPY_AND_ASSIGN(OobeUI); |
| 263 }; | 264 }; |
| 264 | 265 |
| 265 } // namespace chromeos | 266 } // namespace chromeos |
| 266 | 267 |
| 267 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ | 268 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ |
| OLD | NEW |