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" | |
29 #include "chrome/browser/chromeos/policy/enrollment_config.h" | 28 #include "chrome/browser/chromeos/policy/enrollment_config.h" |
30 | 29 |
31 class PrefRegistrySimple; | 30 class PrefRegistrySimple; |
32 class PrefService; | 31 class PrefService; |
33 | 32 |
34 namespace pairing_chromeos { | 33 namespace pairing_chromeos { |
35 class ControllerPairingController; | 34 class ControllerPairingController; |
36 class HostPairingController; | 35 class HostPairingController; |
37 class SharkConnectionListener; | 36 class SharkConnectionListener; |
38 } | 37 } |
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
422 shark_connection_listener_; | 421 shark_connection_listener_; |
423 | 422 |
424 base::WeakPtrFactory<WizardController> weak_factory_; | 423 base::WeakPtrFactory<WizardController> weak_factory_; |
425 | 424 |
426 DISALLOW_COPY_AND_ASSIGN(WizardController); | 425 DISALLOW_COPY_AND_ASSIGN(WizardController); |
427 }; | 426 }; |
428 | 427 |
429 } // namespace chromeos | 428 } // namespace chromeos |
430 | 429 |
431 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ | 430 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ |
OLD | NEW |