| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_SHELL_H_ | 5 #ifndef ASH_SHELL_H_ |
| 6 #define ASH_SHELL_H_ | 6 #define ASH_SHELL_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 class AcceleratorFilter; | 65 class AcceleratorFilter; |
| 66 class CompoundEventFilter; | 66 class CompoundEventFilter; |
| 67 class ShadowController; | 67 class ShadowController; |
| 68 class VisibilityController; | 68 class VisibilityController; |
| 69 class WindowModalityController; | 69 class WindowModalityController; |
| 70 } | 70 } |
| 71 | 71 |
| 72 namespace ash { | 72 namespace ash { |
| 73 | 73 |
| 74 class AcceleratorControllerDelegateAura; | 74 class AcceleratorControllerDelegateAura; |
| 75 class AppListDelegateImpl; |
| 75 class AshNativeCursorManager; | 76 class AshNativeCursorManager; |
| 76 class AutoclickController; | 77 class AutoclickController; |
| 77 class BluetoothNotificationController; | 78 class BluetoothNotificationController; |
| 78 class DisplayColorManager; | 79 class DisplayColorManager; |
| 79 class DisplayConfigurationController; | 80 class DisplayConfigurationController; |
| 80 class DisplayErrorObserver; | 81 class DisplayErrorObserver; |
| 81 class DragDropController; | 82 class DragDropController; |
| 82 class EventClientImpl; | 83 class EventClientImpl; |
| 83 class EventTransformationHandler; | 84 class EventTransformationHandler; |
| 84 class FirstRunHelper; | 85 class FirstRunHelper; |
| (...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 543 // For testing only: simulate that a modal window is open | 544 // For testing only: simulate that a modal window is open |
| 544 bool simulate_modal_window_open_for_testing_; | 545 bool simulate_modal_window_open_for_testing_; |
| 545 | 546 |
| 546 bool is_touch_hud_projection_enabled_; | 547 bool is_touch_hud_projection_enabled_; |
| 547 | 548 |
| 548 // Injected content::GPUDataManager support. | 549 // Injected content::GPUDataManager support. |
| 549 std::unique_ptr<GPUSupport> gpu_support_; | 550 std::unique_ptr<GPUSupport> gpu_support_; |
| 550 | 551 |
| 551 std::unique_ptr<ImmersiveHandlerFactoryAsh> immersive_handler_factory_; | 552 std::unique_ptr<ImmersiveHandlerFactoryAsh> immersive_handler_factory_; |
| 552 | 553 |
| 554 std::unique_ptr<AppListDelegateImpl> app_list_delegate_impl_; |
| 555 |
| 553 DISALLOW_COPY_AND_ASSIGN(Shell); | 556 DISALLOW_COPY_AND_ASSIGN(Shell); |
| 554 }; | 557 }; |
| 555 | 558 |
| 556 } // namespace ash | 559 } // namespace ash |
| 557 | 560 |
| 558 #endif // ASH_SHELL_H_ | 561 #endif // ASH_SHELL_H_ |
| OLD | NEW |