| 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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 | 204 |
| 205 // Actions that should be done right after EULA is accepted, | 205 // Actions that should be done right after EULA is accepted, |
| 206 // before update check. | 206 // before update check. |
| 207 void PerformPostEulaActions(); | 207 void PerformPostEulaActions(); |
| 208 | 208 |
| 209 // Actions that should be done right after update stage is finished. | 209 // Actions that should be done right after update stage is finished. |
| 210 void PerformOOBECompletedActions(); | 210 void PerformOOBECompletedActions(); |
| 211 | 211 |
| 212 // Overridden from BaseScreenDelegate: | 212 // Overridden from BaseScreenDelegate: |
| 213 void OnExit(BaseScreen& screen, | 213 void OnExit(BaseScreen& screen, |
| 214 ExitCodes exit_code, | 214 ScreenExitCode exit_code, |
| 215 const ::login::ScreenContext* context) override; | 215 const ::login::ScreenContext* context) override; |
| 216 void ShowCurrentScreen() override; | 216 void ShowCurrentScreen() override; |
| 217 ErrorScreen* GetErrorScreen() override; | 217 ErrorScreen* GetErrorScreen() override; |
| 218 void ShowErrorScreen() override; | 218 void ShowErrorScreen() override; |
| 219 void HideErrorScreen(BaseScreen* parent_screen) override; | 219 void HideErrorScreen(BaseScreen* parent_screen) override; |
| 220 | 220 |
| 221 // Overridden from EulaScreen::Delegate: | 221 // Overridden from EulaScreen::Delegate: |
| 222 void SetUsageStatisticsReporting(bool val) override; | 222 void SetUsageStatisticsReporting(bool val) override; |
| 223 bool GetUsageStatisticsReporting() const override; | 223 bool GetUsageStatisticsReporting() const override; |
| 224 | 224 |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 BaseScreen* hid_screen_ = nullptr; | 423 BaseScreen* hid_screen_ = nullptr; |
| 424 | 424 |
| 425 base::WeakPtrFactory<WizardController> weak_factory_; | 425 base::WeakPtrFactory<WizardController> weak_factory_; |
| 426 | 426 |
| 427 DISALLOW_COPY_AND_ASSIGN(WizardController); | 427 DISALLOW_COPY_AND_ASSIGN(WizardController); |
| 428 }; | 428 }; |
| 429 | 429 |
| 430 } // namespace chromeos | 430 } // namespace chromeos |
| 431 | 431 |
| 432 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ | 432 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ |
| OLD | NEW |