Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(128)

Side by Side Diff: chrome/browser/chromeos/login/wizard_controller.h

Issue 2705363002: cros: Move BaseScreenDelegate::ExitCodes into separate file, ScreenExitCode. (Closed)
Patch Set: Rebase Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/screens/wrong_hwid_screen.cc ('k') | chrome/browser/chromeos/login/wizard_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698