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