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 <string> | 8 #include <string> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 static const char kTestNoScreenName[]; | 138 static const char kTestNoScreenName[]; |
139 static const char kEulaScreenName[]; | 139 static const char kEulaScreenName[]; |
140 static const char kEnrollmentScreenName[]; | 140 static const char kEnrollmentScreenName[]; |
141 static const char kResetScreenName[]; | 141 static const char kResetScreenName[]; |
142 static const char kKioskEnableScreenName[]; | 142 static const char kKioskEnableScreenName[]; |
143 static const char kKioskAutolaunchScreenName[]; | 143 static const char kKioskAutolaunchScreenName[]; |
144 static const char kErrorScreenName[]; | 144 static const char kErrorScreenName[]; |
145 static const char kTermsOfServiceScreenName[]; | 145 static const char kTermsOfServiceScreenName[]; |
146 static const char kWrongHWIDScreenName[]; | 146 static const char kWrongHWIDScreenName[]; |
147 static const char kLocallyManagedUserCreationScreenName[]; | 147 static const char kLocallyManagedUserCreationScreenName[]; |
| 148 static const char kAppLaunchSplashScreenName[]; |
148 | 149 |
149 private: | 150 private: |
150 // Show specific screen. | 151 // Show specific screen. |
151 void ShowNetworkScreen(); | 152 void ShowNetworkScreen(); |
152 void ShowUpdateScreen(); | 153 void ShowUpdateScreen(); |
153 void ShowUserImageScreen(); | 154 void ShowUserImageScreen(); |
154 void ShowEulaScreen(); | 155 void ShowEulaScreen(); |
155 void ShowEnrollmentScreen(); | 156 void ShowEnrollmentScreen(); |
156 void ShowResetScreen(); | 157 void ShowResetScreen(); |
157 void ShowKioskAutolaunchScreen(); | 158 void ShowKioskAutolaunchScreen(); |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
312 FRIEND_TEST_ALL_PREFIXES(WizardControllerFlowTest, Accelerators); | 313 FRIEND_TEST_ALL_PREFIXES(WizardControllerFlowTest, Accelerators); |
313 friend class WizardControllerFlowTest; | 314 friend class WizardControllerFlowTest; |
314 friend class WizardInProcessBrowserTest; | 315 friend class WizardInProcessBrowserTest; |
315 | 316 |
316 DISALLOW_COPY_AND_ASSIGN(WizardController); | 317 DISALLOW_COPY_AND_ASSIGN(WizardController); |
317 }; | 318 }; |
318 | 319 |
319 } // namespace chromeos | 320 } // namespace chromeos |
320 | 321 |
321 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ | 322 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ |
OLD | NEW |