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_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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 LoginDisplayHost* host_; | 212 LoginDisplayHost* host_; |
213 | 213 |
214 // Default WizardController. | 214 // Default WizardController. |
215 static WizardController* default_controller_; | 215 static WizardController* default_controller_; |
216 | 216 |
217 // URL to open on browser launch. | 217 // URL to open on browser launch. |
218 GURL start_url_; | 218 GURL start_url_; |
219 | 219 |
220 base::OneShotTimer<WizardController> smooth_show_timer_; | 220 base::OneShotTimer<WizardController> smooth_show_timer_; |
221 | 221 |
222 scoped_ptr<OobeDisplay> oobe_display_; | 222 OobeDisplay* oobe_display_; |
223 | 223 |
224 // State of Usage stat/error reporting checkbox on EULA screen | 224 // State of Usage stat/error reporting checkbox on EULA screen |
225 // during wizard lifetime. | 225 // during wizard lifetime. |
226 bool usage_statistics_reporting_; | 226 bool usage_statistics_reporting_; |
227 | 227 |
228 FRIEND_TEST_ALL_PREFIXES(EnterpriseEnrollmentScreenTest, TestCancel); | 228 FRIEND_TEST_ALL_PREFIXES(EnterpriseEnrollmentScreenTest, TestCancel); |
229 FRIEND_TEST_ALL_PREFIXES(WizardControllerFlowTest, Accelerators); | 229 FRIEND_TEST_ALL_PREFIXES(WizardControllerFlowTest, Accelerators); |
230 friend class WizardControllerFlowTest; | 230 friend class WizardControllerFlowTest; |
231 friend class WizardInProcessBrowserTest; | 231 friend class WizardInProcessBrowserTest; |
232 | 232 |
233 DISALLOW_COPY_AND_ASSIGN(WizardController); | 233 DISALLOW_COPY_AND_ASSIGN(WizardController); |
234 }; | 234 }; |
235 | 235 |
236 } // namespace chromeos | 236 } // namespace chromeos |
237 | 237 |
238 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ | 238 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ |
OLD | NEW |