| 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 content { | 30 namespace content { |
| 32 class RenderFrameHost; | 31 class RenderFrameHost; |
| 33 class WebContents; | 32 class WebContents; |
| 34 } | 33 } |
| 35 | 34 |
| 36 namespace policy { | 35 namespace policy { |
| 37 class AutoEnrollmentClient; | 36 class AutoEnrollmentClient; |
| 38 } // namespace policy | 37 } // namespace policy |
| 39 | 38 |
| 40 namespace chromeos { | 39 namespace chromeos { |
| 41 | 40 |
| 41 class DemoAppLauncher; |
| 42 class FocusRingController; | 42 class FocusRingController; |
| 43 class KeyboardDrivenOobeKeyHandler; | 43 class KeyboardDrivenOobeKeyHandler; |
| 44 class OobeUI; | 44 class OobeUI; |
| 45 class WebUILoginDisplay; | 45 class WebUILoginDisplay; |
| 46 class WebUILoginView; | 46 class WebUILoginView; |
| 47 | 47 |
| 48 // An implementation class for OOBE/login WebUI screen host. | 48 // An implementation class for OOBE/login WebUI screen host. |
| 49 // It encapsulates controllers, background integration and flow. | 49 // It encapsulates controllers, background integration and flow. |
| 50 class LoginDisplayHostImpl : public LoginDisplayHost, | 50 class LoginDisplayHostImpl : public LoginDisplayHost, |
| 51 public content::NotificationObserver, | 51 public content::NotificationObserver, |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 // feedback is enabled. Otherwise, startup sound should be played | 315 // feedback is enabled. Otherwise, startup sound should be played |
| 316 // in any case. | 316 // in any case. |
| 317 bool startup_sound_honors_spoken_feedback_; | 317 bool startup_sound_honors_spoken_feedback_; |
| 318 | 318 |
| 319 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); | 319 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); |
| 320 }; | 320 }; |
| 321 | 321 |
| 322 } // namespace chromeos | 322 } // namespace chromeos |
| 323 | 323 |
| 324 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_IMPL_H_ | 324 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_IMPL_H_ |
| OLD | NEW |