| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_UI_LOGIN_DISPLAY_HOST_IMPL_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "chromeos/dbus/session_manager_client.h" | 27 #include "chromeos/dbus/session_manager_client.h" |
| 28 #include "content/public/browser/notification_observer.h" | 28 #include "content/public/browser/notification_observer.h" |
| 29 #include "content/public/browser/notification_registrar.h" | 29 #include "content/public/browser/notification_registrar.h" |
| 30 #include "content/public/browser/web_contents_observer.h" | 30 #include "content/public/browser/web_contents_observer.h" |
| 31 #include "ui/display/display_observer.h" | 31 #include "ui/display/display_observer.h" |
| 32 #include "ui/gfx/geometry/rect.h" | 32 #include "ui/gfx/geometry/rect.h" |
| 33 #include "ui/keyboard/keyboard_controller_observer.h" | 33 #include "ui/keyboard/keyboard_controller_observer.h" |
| 34 #include "ui/views/widget/widget_removals_observer.h" | 34 #include "ui/views/widget/widget_removals_observer.h" |
| 35 #include "ui/wm/public/scoped_drag_drop_disabler.h" | 35 #include "ui/wm/public/scoped_drag_drop_disabler.h" |
| 36 | 36 |
| 37 class PrefService; | |
| 38 class ScopedKeepAlive; | 37 class ScopedKeepAlive; |
| 39 | 38 |
| 40 namespace content { | |
| 41 class RenderFrameHost; | |
| 42 class WebContents; | |
| 43 } | |
| 44 | |
| 45 namespace chromeos { | 39 namespace chromeos { |
| 46 | 40 |
| 47 class DemoAppLauncher; | 41 class DemoAppLauncher; |
| 48 class FocusRingController; | 42 class FocusRingController; |
| 49 class KeyboardDrivenOobeKeyHandler; | 43 class KeyboardDrivenOobeKeyHandler; |
| 50 class WebUILoginDisplay; | 44 class WebUILoginDisplay; |
| 51 class WebUILoginView; | 45 class WebUILoginView; |
| 52 | 46 |
| 53 // An implementation class for OOBE/login WebUI screen host. | 47 // An implementation class for OOBE/login WebUI screen host. |
| 54 // It encapsulates controllers, wallpaper integration and flow. | 48 // It encapsulates controllers, wallpaper integration and flow. |
| (...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 | 313 |
| 320 base::WeakPtrFactory<LoginDisplayHostImpl> pointer_factory_; | 314 base::WeakPtrFactory<LoginDisplayHostImpl> pointer_factory_; |
| 321 base::WeakPtrFactory<LoginDisplayHostImpl> animation_weak_ptr_factory_; | 315 base::WeakPtrFactory<LoginDisplayHostImpl> animation_weak_ptr_factory_; |
| 322 | 316 |
| 323 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); | 317 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); |
| 324 }; | 318 }; |
| 325 | 319 |
| 326 } // namespace chromeos | 320 } // namespace chromeos |
| 327 | 321 |
| 328 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ | 322 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ |
| OLD | NEW |