OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/scoped_ptr.h" | 12 #include "base/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/view_screen.h" | 15 #include "chrome/browser/chromeos/login/view_screen.h" |
16 #include "chrome/browser/chromeos/login/wizard_screen.h" | 16 #include "chrome/browser/chromeos/login/wizard_screen.h" |
17 #include "chrome/common/notification_observer.h" | 17 #include "chrome/common/notification_observer.h" |
18 #include "chrome/common/notification_registrar.h" | 18 #include "chrome/common/notification_registrar.h" |
19 #include "gfx/rect.h" | |
20 #include "googleurl/src/gurl.h" | 19 #include "googleurl/src/gurl.h" |
21 #include "testing/gtest/include/gtest/gtest_prod.h" | 20 #include "testing/gtest/include/gtest/gtest_prod.h" |
| 21 #include "ui/gfx/rect.h" |
22 | 22 |
23 class PrefService; | 23 class PrefService; |
24 class WizardContentsView; | 24 class WizardContentsView; |
25 class WizardScreen; | 25 class WizardScreen; |
26 | 26 |
27 namespace chromeos { | 27 namespace chromeos { |
28 class AccountScreen; | 28 class AccountScreen; |
29 class BackgroundView; | 29 class BackgroundView; |
30 class EulaScreen; | 30 class EulaScreen; |
31 class ExistingUserController; | 31 class ExistingUserController; |
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 ControlFlowLanguageOnNetwork); | 288 ControlFlowLanguageOnNetwork); |
289 FRIEND_TEST_ALL_PREFIXES(WizardControllerFlowTest, ControlFlowMain); | 289 FRIEND_TEST_ALL_PREFIXES(WizardControllerFlowTest, ControlFlowMain); |
290 FRIEND_TEST_ALL_PREFIXES(WizardControllerTest, SwitchLanguage); | 290 FRIEND_TEST_ALL_PREFIXES(WizardControllerTest, SwitchLanguage); |
291 friend class WizardControllerFlowTest; | 291 friend class WizardControllerFlowTest; |
292 friend class chromeos::WizardInProcessBrowserTest; | 292 friend class chromeos::WizardInProcessBrowserTest; |
293 | 293 |
294 DISALLOW_COPY_AND_ASSIGN(WizardController); | 294 DISALLOW_COPY_AND_ASSIGN(WizardController); |
295 }; | 295 }; |
296 | 296 |
297 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ | 297 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ |
OLD | NEW |