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> |
11 #include <string> | 11 #include <string> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "ash/common/shell_observer.h" | 14 #include "ash/shell_observer.h" |
15 #include "base/macros.h" | 15 #include "base/macros.h" |
16 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
17 #include "chrome/browser/chromeos/login/app_launch_controller.h" | 17 #include "chrome/browser/chromeos/login/app_launch_controller.h" |
18 #include "chrome/browser/chromeos/login/auth/auth_prewarmer.h" | 18 #include "chrome/browser/chromeos/login/auth/auth_prewarmer.h" |
19 #include "chrome/browser/chromeos/login/existing_user_controller.h" | 19 #include "chrome/browser/chromeos/login/existing_user_controller.h" |
20 #include "chrome/browser/chromeos/login/signin_screen_controller.h" | 20 #include "chrome/browser/chromeos/login/signin_screen_controller.h" |
21 #include "chrome/browser/chromeos/login/ui/login_display.h" | 21 #include "chrome/browser/chromeos/login/ui/login_display.h" |
22 #include "chrome/browser/chromeos/login/ui/login_display_host.h" | 22 #include "chrome/browser/chromeos/login/ui/login_display_host.h" |
23 #include "chrome/browser/chromeos/login/wizard_controller.h" | 23 #include "chrome/browser/chromeos/login/wizard_controller.h" |
24 #include "chrome/browser/chromeos/settings/device_settings_service.h" | 24 #include "chrome/browser/chromeos/settings/device_settings_service.h" |
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
325 | 325 |
326 base::WeakPtrFactory<LoginDisplayHostImpl> pointer_factory_; | 326 base::WeakPtrFactory<LoginDisplayHostImpl> pointer_factory_; |
327 base::WeakPtrFactory<LoginDisplayHostImpl> animation_weak_ptr_factory_; | 327 base::WeakPtrFactory<LoginDisplayHostImpl> animation_weak_ptr_factory_; |
328 | 328 |
329 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); | 329 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); |
330 }; | 330 }; |
331 | 331 |
332 } // namespace chromeos | 332 } // namespace chromeos |
333 | 333 |
334 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ | 334 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ |
OLD | NEW |