| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 class ErrorScreenHandler; | 42 class ErrorScreenHandler; |
| 43 class GaiaScreenHandler; | 43 class GaiaScreenHandler; |
| 44 class HIDDetectionView; | 44 class HIDDetectionView; |
| 45 class HostPairingScreenActor; | 45 class HostPairingScreenActor; |
| 46 class KioskAppMenuHandler; | 46 class KioskAppMenuHandler; |
| 47 class KioskAutolaunchScreenActor; | 47 class KioskAutolaunchScreenActor; |
| 48 class KioskEnableScreenActor; | 48 class KioskEnableScreenActor; |
| 49 class LoginScreenContext; | 49 class LoginScreenContext; |
| 50 class NativeWindowDelegate; | 50 class NativeWindowDelegate; |
| 51 class NetworkDropdownHandler; | 51 class NetworkDropdownHandler; |
| 52 class NetworkErrorView; | |
| 53 class NetworkStateInformer; | 52 class NetworkStateInformer; |
| 54 class NetworkView; | 53 class NetworkView; |
| 55 class SigninScreenHandler; | 54 class SigninScreenHandler; |
| 56 class SigninScreenHandlerDelegate; | 55 class SigninScreenHandlerDelegate; |
| 57 class SupervisedUserCreationScreenHandler; | 56 class SupervisedUserCreationScreenHandler; |
| 58 class ResetView; | 57 class ResetView; |
| 59 class TermsOfServiceScreenActor; | 58 class TermsOfServiceScreenActor; |
| 60 class UserBoardScreenHandler; | 59 class UserBoardScreenHandler; |
| 61 class UserBoardView; | 60 class UserBoardView; |
| 62 class UserImageView; | 61 class UserImageView; |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 std::unique_ptr<ShutdownPolicyHandler> shutdown_policy_handler_; | 245 std::unique_ptr<ShutdownPolicyHandler> shutdown_policy_handler_; |
| 247 | 246 |
| 248 std::unique_ptr<ash::ScreenDimmer> screen_dimmer_; | 247 std::unique_ptr<ash::ScreenDimmer> screen_dimmer_; |
| 249 | 248 |
| 250 DISALLOW_COPY_AND_ASSIGN(OobeUI); | 249 DISALLOW_COPY_AND_ASSIGN(OobeUI); |
| 251 }; | 250 }; |
| 252 | 251 |
| 253 } // namespace chromeos | 252 } // namespace chromeos |
| 254 | 253 |
| 255 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ | 254 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ |
| OLD | NEW |