| 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 |
| 11 #include "base/gtest_prod_util.h" | 11 #include "base/gtest_prod_util.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/timer.h" | 13 #include "base/timer.h" |
| 14 #include "chrome/browser/chromeos/login/screen_observer.h" | 14 #include "chrome/browser/chromeos/login/screen_observer.h" |
| 15 #include "chrome/browser/chromeos/login/wizard_screen.h" | 15 #include "chrome/browser/chromeos/login/wizard_screen.h" |
| 16 #include "googleurl/src/gurl.h" | 16 #include "googleurl/src/gurl.h" |
| 17 #include "testing/gtest/include/gtest/gtest_prod.h" | 17 #include "testing/gtest/include/gtest/gtest_prod.h" |
| 18 #include "ui/gfx/rect.h" | 18 #include "ui/gfx/rect.h" |
| 19 | 19 |
| 20 class PrefService; | 20 class PrefService; |
| 21 | 21 |
| 22 namespace gfx { | |
| 23 class Rect; | |
| 24 } | |
| 25 | |
| 26 namespace views { | |
| 27 class Views; | |
| 28 class Widget; | |
| 29 } | |
| 30 | |
| 31 namespace chromeos { | 22 namespace chromeos { |
| 32 | 23 |
| 33 class EnterpriseEnrollmentScreen; | 24 class EnterpriseEnrollmentScreen; |
| 34 class EulaScreen; | 25 class EulaScreen; |
| 35 class ExistingUserController; | |
| 36 class HTMLPageScreen; | 26 class HTMLPageScreen; |
| 37 class LoginDisplayHost; | 27 class LoginDisplayHost; |
| 38 class NetworkScreen; | 28 class NetworkScreen; |
| 39 class OobeDisplay; | 29 class OobeDisplay; |
| 40 class RegistrationScreen; | 30 class RegistrationScreen; |
| 41 class UpdateScreen; | 31 class UpdateScreen; |
| 42 class UserImageScreen; | 32 class UserImageScreen; |
| 43 class WizardScreen; | 33 class WizardScreen; |
| 44 | 34 |
| 45 // Class that manages control flow between wizard screens. Wizard controller | 35 // Class that manages control flow between wizard screens. Wizard controller |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 FRIEND_TEST_ALL_PREFIXES(WizardControllerFlowTest, Accelerators); | 217 FRIEND_TEST_ALL_PREFIXES(WizardControllerFlowTest, Accelerators); |
| 228 friend class WizardControllerFlowTest; | 218 friend class WizardControllerFlowTest; |
| 229 friend class WizardInProcessBrowserTest; | 219 friend class WizardInProcessBrowserTest; |
| 230 | 220 |
| 231 DISALLOW_COPY_AND_ASSIGN(WizardController); | 221 DISALLOW_COPY_AND_ASSIGN(WizardController); |
| 232 }; | 222 }; |
| 233 | 223 |
| 234 } // namespace chromeos | 224 } // namespace chromeos |
| 235 | 225 |
| 236 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ | 226 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ |
| OLD | NEW |