OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 ASH_COMMON_WM_SHELL_H_ | 5 #ifndef ASH_COMMON_WM_SHELL_H_ |
6 #define ASH_COMMON_WM_SHELL_H_ | 6 #define ASH_COMMON_WM_SHELL_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 namespace display { | 27 namespace display { |
28 class Display; | 28 class Display; |
29 class ManagedDisplayInfo; | 29 class ManagedDisplayInfo; |
30 } | 30 } |
31 | 31 |
32 namespace gfx { | 32 namespace gfx { |
33 class Insets; | 33 class Insets; |
34 class Point; | 34 class Point; |
35 } | 35 } |
36 | 36 |
37 namespace service_manager { | |
38 class Connector; | |
39 } | |
40 | |
41 namespace views { | 37 namespace views { |
42 class PointerWatcher; | 38 class PointerWatcher; |
43 enum class PointerWatcherEventTypes; | 39 enum class PointerWatcherEventTypes; |
44 } | 40 } |
45 | 41 |
46 namespace ash { | 42 namespace ash { |
47 | 43 |
48 class AcceleratorController; | 44 class AcceleratorController; |
49 class AccessibilityDelegate; | 45 class AccessibilityDelegate; |
50 class BrightnessControlDelegate; | 46 class BrightnessControlDelegate; |
(...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
506 scoped_refptr<base::SequencedWorkerPool> blocking_pool_; | 502 scoped_refptr<base::SequencedWorkerPool> blocking_pool_; |
507 | 503 |
508 #if defined(OS_CHROMEOS) | 504 #if defined(OS_CHROMEOS) |
509 std::unique_ptr<LogoutConfirmationController> logout_confirmation_controller_; | 505 std::unique_ptr<LogoutConfirmationController> logout_confirmation_controller_; |
510 #endif | 506 #endif |
511 }; | 507 }; |
512 | 508 |
513 } // namespace ash | 509 } // namespace ash |
514 | 510 |
515 #endif // ASH_COMMON_WM_SHELL_H_ | 511 #endif // ASH_COMMON_WM_SHELL_H_ |
OLD | NEW |