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 shell { | |
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 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
500 scoped_refptr<base::SequencedWorkerPool> blocking_pool_; | 496 scoped_refptr<base::SequencedWorkerPool> blocking_pool_; |
501 | 497 |
502 #if defined(OS_CHROMEOS) | 498 #if defined(OS_CHROMEOS) |
503 std::unique_ptr<LogoutConfirmationController> logout_confirmation_controller_; | 499 std::unique_ptr<LogoutConfirmationController> logout_confirmation_controller_; |
504 #endif | 500 #endif |
505 }; | 501 }; |
506 | 502 |
507 } // namespace ash | 503 } // namespace ash |
508 | 504 |
509 #endif // ASH_COMMON_WM_SHELL_H_ | 505 #endif // ASH_COMMON_WM_SHELL_H_ |
OLD | NEW |