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_LOGIN_DISPLAY_HOST_IMPL_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_IMPL_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_IMPL_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_IMPL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
14 #include "chrome/browser/chromeos/login/app_launch_controller.h" | 14 #include "chrome/browser/chromeos/login/app_launch_controller.h" |
15 #include "chrome/browser/chromeos/login/auth_prewarmer.h" | 15 #include "chrome/browser/chromeos/login/auth_prewarmer.h" |
16 #include "chrome/browser/chromeos/login/demo_mode/demo_app_launcher.h" | |
17 #include "chrome/browser/chromeos/login/existing_user_controller.h" | 16 #include "chrome/browser/chromeos/login/existing_user_controller.h" |
18 #include "chrome/browser/chromeos/login/login_display.h" | 17 #include "chrome/browser/chromeos/login/login_display.h" |
19 #include "chrome/browser/chromeos/login/login_display_host.h" | 18 #include "chrome/browser/chromeos/login/login_display_host.h" |
20 #include "chrome/browser/chromeos/login/wizard_controller.h" | 19 #include "chrome/browser/chromeos/login/wizard_controller.h" |
21 #include "chrome/browser/chromeos/settings/device_settings_service.h" | 20 #include "chrome/browser/chromeos/settings/device_settings_service.h" |
22 #include "chromeos/audio/cras_audio_handler.h" | 21 #include "chromeos/audio/cras_audio_handler.h" |
23 #include "chromeos/dbus/session_manager_client.h" | 22 #include "chromeos/dbus/session_manager_client.h" |
24 #include "content/public/browser/notification_observer.h" | 23 #include "content/public/browser/notification_observer.h" |
25 #include "content/public/browser/notification_registrar.h" | 24 #include "content/public/browser/notification_registrar.h" |
26 #include "content/public/browser/web_contents_observer.h" | 25 #include "content/public/browser/web_contents_observer.h" |
27 #include "ui/gfx/rect.h" | 26 #include "ui/gfx/rect.h" |
28 | 27 |
29 class PrefService; | 28 class PrefService; |
30 | 29 |
31 namespace policy { | 30 namespace policy { |
32 class AutoEnrollmentClient; | 31 class AutoEnrollmentClient; |
33 } // namespace policy | 32 } // namespace policy |
34 | 33 |
35 namespace chromeos { | 34 namespace chromeos { |
36 | 35 |
| 36 class DemoAppLauncher; |
37 class FocusRingController; | 37 class FocusRingController; |
38 class KeyboardDrivenOobeKeyHandler; | 38 class KeyboardDrivenOobeKeyHandler; |
39 class OobeUI; | 39 class OobeUI; |
40 class WebUILoginDisplay; | 40 class WebUILoginDisplay; |
41 class WebUILoginView; | 41 class WebUILoginView; |
42 | 42 |
43 // An implementation class for OOBE/login WebUI screen host. | 43 // An implementation class for OOBE/login WebUI screen host. |
44 // It encapsulates controllers, background integration and flow. | 44 // It encapsulates controllers, background integration and flow. |
45 class LoginDisplayHostImpl : public LoginDisplayHost, | 45 class LoginDisplayHostImpl : public LoginDisplayHost, |
46 public content::NotificationObserver, | 46 public content::NotificationObserver, |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 // feedback is enabled. Otherwise, startup sound should be played | 302 // feedback is enabled. Otherwise, startup sound should be played |
303 // in any case. | 303 // in any case. |
304 bool startup_sound_honors_spoken_feedback_; | 304 bool startup_sound_honors_spoken_feedback_; |
305 | 305 |
306 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); | 306 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); |
307 }; | 307 }; |
308 | 308 |
309 } // namespace chromeos | 309 } // namespace chromeos |
310 | 310 |
311 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_IMPL_H_ | 311 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_IMPL_H_ |
OLD | NEW |