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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 class ScreenshotController; | 113 class ScreenshotController; |
114 class ScreenPinningController; | 114 class ScreenPinningController; |
115 class ScreenPositionController; | 115 class ScreenPositionController; |
116 class SessionStateDelegate; | 116 class SessionStateDelegate; |
117 class Shelf; | 117 class Shelf; |
118 class ShellDelegate; | 118 class ShellDelegate; |
119 struct ShellInitParams; | 119 struct ShellInitParams; |
120 class SlowAnimationEventFilter; | 120 class SlowAnimationEventFilter; |
121 class StatusAreaWidget; | 121 class StatusAreaWidget; |
122 class StickyKeysController; | 122 class StickyKeysController; |
| 123 class StylusMetricsRecorder; |
123 class SystemGestureEventFilter; | 124 class SystemGestureEventFilter; |
124 class SystemModalContainerEventFilter; | 125 class SystemModalContainerEventFilter; |
125 class SystemTray; | 126 class SystemTray; |
126 class ToplevelWindowEventHandler; | 127 class ToplevelWindowEventHandler; |
127 class TouchTransformerController; | 128 class TouchTransformerController; |
128 class TouchObserverHUD; | 129 class TouchObserverHUD; |
129 class UserWallpaperDelegate; | 130 class UserWallpaperDelegate; |
130 class VirtualKeyboardController; | 131 class VirtualKeyboardController; |
131 class VideoActivityNotifier; | 132 class VideoActivityNotifier; |
132 class VideoDetector; | 133 class VideoDetector; |
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
569 // Listens for output changes and updates the display manager. | 570 // Listens for output changes and updates the display manager. |
570 std::unique_ptr<DisplayChangeObserver> display_change_observer_; | 571 std::unique_ptr<DisplayChangeObserver> display_change_observer_; |
571 | 572 |
572 // Implements content::ScreenOrientationController for ChromeOS | 573 // Implements content::ScreenOrientationController for ChromeOS |
573 std::unique_ptr<ScreenOrientationController> screen_orientation_controller_; | 574 std::unique_ptr<ScreenOrientationController> screen_orientation_controller_; |
574 | 575 |
575 std::unique_ptr<TouchTransformerController> touch_transformer_controller_; | 576 std::unique_ptr<TouchTransformerController> touch_transformer_controller_; |
576 | 577 |
577 std::unique_ptr<ui::EventHandler> magnifier_key_scroll_handler_; | 578 std::unique_ptr<ui::EventHandler> magnifier_key_scroll_handler_; |
578 std::unique_ptr<ui::EventHandler> speech_feedback_handler_; | 579 std::unique_ptr<ui::EventHandler> speech_feedback_handler_; |
| 580 std::unique_ptr<StylusMetricsRecorder> stylus_metrics_recorder_; |
579 #endif // defined(OS_CHROMEOS) | 581 #endif // defined(OS_CHROMEOS) |
580 | 582 |
581 // |native_cursor_manager_| is owned by |cursor_manager_|, but we keep a | 583 // |native_cursor_manager_| is owned by |cursor_manager_|, but we keep a |
582 // pointer to vend to test code. | 584 // pointer to vend to test code. |
583 AshNativeCursorManager* native_cursor_manager_; | 585 AshNativeCursorManager* native_cursor_manager_; |
584 | 586 |
585 // Cursor may be hidden on certain key events in ChromeOS, whereas we never | 587 // Cursor may be hidden on certain key events in ChromeOS, whereas we never |
586 // hide the cursor on Windows. | 588 // hide the cursor on Windows. |
587 std::unique_ptr<::wm::CursorManager> cursor_manager_; | 589 std::unique_ptr<::wm::CursorManager> cursor_manager_; |
588 | 590 |
(...skipping 10 matching lines...) Expand all Loading... |
599 base::SequencedWorkerPool* blocking_pool_; | 601 base::SequencedWorkerPool* blocking_pool_; |
600 | 602 |
601 bool in_mus_ = false; | 603 bool in_mus_ = false; |
602 | 604 |
603 DISALLOW_COPY_AND_ASSIGN(Shell); | 605 DISALLOW_COPY_AND_ASSIGN(Shell); |
604 }; | 606 }; |
605 | 607 |
606 } // namespace ash | 608 } // namespace ash |
607 | 609 |
608 #endif // ASH_SHELL_H_ | 610 #endif // ASH_SHELL_H_ |
OLD | NEW |