| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 void SetHostNetwork() override; | 221 void SetHostNetwork() override; |
| 222 void SetHostConfiguration() override; | 222 void SetHostConfiguration() override; |
| 223 | 223 |
| 224 // Override from HostPairingScreen::Delegate: | 224 // Override from HostPairingScreen::Delegate: |
| 225 void ConfigureHostRequested(bool accepted_eula, | 225 void ConfigureHostRequested(bool accepted_eula, |
| 226 const std::string& lang, | 226 const std::string& lang, |
| 227 const std::string& timezone, | 227 const std::string& timezone, |
| 228 bool send_reports, | 228 bool send_reports, |
| 229 const std::string& keyboard_layout) override; | 229 const std::string& keyboard_layout) override; |
| 230 void AddNetworkRequested(const std::string& onc_spec) override; | 230 void AddNetworkRequested(const std::string& onc_spec) override; |
| 231 void RebootHostRequested() override; |
| 231 | 232 |
| 232 // Override from NetworkScreen::Delegate: | 233 // Override from NetworkScreen::Delegate: |
| 233 void OnEnableDebuggingScreenRequested() override; | 234 void OnEnableDebuggingScreenRequested() override; |
| 234 | 235 |
| 235 // Override from HIDDetectionScreen::Delegate | 236 // Override from HIDDetectionScreen::Delegate |
| 236 void OnHIDScreenNecessityCheck(bool screen_needed) override; | 237 void OnHIDScreenNecessityCheck(bool screen_needed) override; |
| 237 | 238 |
| 238 // Notification of a change in the state of an accessibility setting. | 239 // Notification of a change in the state of an accessibility setting. |
| 239 void OnAccessibilityStatusChanged( | 240 void OnAccessibilityStatusChanged( |
| 240 const AccessibilityStatusEventDetails& details); | 241 const AccessibilityStatusEventDetails& details); |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 426 BaseScreen* hid_screen_ = nullptr; | 427 BaseScreen* hid_screen_ = nullptr; |
| 427 | 428 |
| 428 base::WeakPtrFactory<WizardController> weak_factory_; | 429 base::WeakPtrFactory<WizardController> weak_factory_; |
| 429 | 430 |
| 430 DISALLOW_COPY_AND_ASSIGN(WizardController); | 431 DISALLOW_COPY_AND_ASSIGN(WizardController); |
| 431 }; | 432 }; |
| 432 | 433 |
| 433 } // namespace chromeos | 434 } // namespace chromeos |
| 434 | 435 |
| 435 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ | 436 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ |
| OLD | NEW |