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 <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "base/containers/hash_tables.h" | 13 #include "base/containers/hash_tables.h" |
14 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
15 #include "base/memory/linked_ptr.h" | 15 #include "base/memory/linked_ptr.h" |
16 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
17 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
18 #include "base/observer_list.h" | 18 #include "base/observer_list.h" |
19 #include "base/time/time.h" | 19 #include "base/time/time.h" |
20 #include "base/timer/timer.h" | 20 #include "base/timer/timer.h" |
21 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h" | 21 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h" |
22 #include "chrome/browser/chromeos/login/screen_manager.h" | 22 #include "chrome/browser/chromeos/login/screen_manager.h" |
23 #include "chrome/browser/chromeos/login/screens/base_screen_delegate.h" | 23 #include "chrome/browser/chromeos/login/screens/base_screen_delegate.h" |
24 #include "chrome/browser/chromeos/login/screens/controller_pairing_screen.h" | 24 #include "chrome/browser/chromeos/login/screens/controller_pairing_screen.h" |
25 #include "chrome/browser/chromeos/login/screens/eula_screen.h" | 25 #include "chrome/browser/chromeos/login/screens/eula_screen.h" |
26 #include "chrome/browser/chromeos/login/screens/host_pairing_screen.h" | 26 #include "chrome/browser/chromeos/login/screens/host_pairing_screen.h" |
27 #include "chrome/browser/chromeos/login/screens/network_screen.h" | 27 #include "chrome/browser/chromeos/login/screens/network_screen.h" |
| 28 #include "chrome/browser/chromeos/login/screens/reset_screen.h" |
28 #include "chrome/browser/chromeos/policy/enrollment_config.h" | 29 #include "chrome/browser/chromeos/policy/enrollment_config.h" |
29 | 30 |
30 class PrefRegistrySimple; | 31 class PrefRegistrySimple; |
31 class PrefService; | 32 class PrefService; |
32 | 33 |
33 namespace pairing_chromeos { | 34 namespace pairing_chromeos { |
34 class ControllerPairingController; | 35 class ControllerPairingController; |
35 class HostPairingController; | 36 class HostPairingController; |
36 class SharkConnectionListener; | 37 class SharkConnectionListener; |
37 } | 38 } |
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
421 shark_connection_listener_; | 422 shark_connection_listener_; |
422 | 423 |
423 base::WeakPtrFactory<WizardController> weak_factory_; | 424 base::WeakPtrFactory<WizardController> weak_factory_; |
424 | 425 |
425 DISALLOW_COPY_AND_ASSIGN(WizardController); | 426 DISALLOW_COPY_AND_ASSIGN(WizardController); |
426 }; | 427 }; |
427 | 428 |
428 } // namespace chromeos | 429 } // namespace chromeos |
429 | 430 |
430 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ | 431 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ |
OLD | NEW |