Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Side by Side Diff: ash/shell.h

Issue 611423002: [WIP][Ozone] Support external touchscreens (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ozone-touchscreen
Patch Set: . Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ash/ash.gyp ('k') | ash/shell.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 <utility> 8 #include <utility>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 class SlowAnimationEventFilter; 131 class SlowAnimationEventFilter;
132 class StatusAreaWidget; 132 class StatusAreaWidget;
133 class StickyKeysController; 133 class StickyKeysController;
134 class SystemGestureEventFilter; 134 class SystemGestureEventFilter;
135 class SystemModalContainerEventFilter; 135 class SystemModalContainerEventFilter;
136 class SystemTray; 136 class SystemTray;
137 class SystemTrayDelegate; 137 class SystemTrayDelegate;
138 class SystemTrayNotifier; 138 class SystemTrayNotifier;
139 class ToplevelWindowEventHandler; 139 class ToplevelWindowEventHandler;
140 class TouchTransformerController; 140 class TouchTransformerController;
141 class TouchTransformerControllerOzone;
141 class TouchObserverHUD; 142 class TouchObserverHUD;
142 class UserActivityDetector; 143 class UserActivityDetector;
143 class UserWallpaperDelegate; 144 class UserWallpaperDelegate;
144 class VirtualKeyboardController; 145 class VirtualKeyboardController;
145 class VideoActivityNotifier; 146 class VideoActivityNotifier;
146 class VideoDetector; 147 class VideoDetector;
147 class WebNotificationTray; 148 class WebNotificationTray;
148 class WindowCycleController; 149 class WindowCycleController;
149 class WindowPositioner; 150 class WindowPositioner;
150 class WindowSelectorController; 151 class WindowSelectorController;
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 WindowCycleController* window_cycle_controller() { 378 WindowCycleController* window_cycle_controller() {
378 return window_cycle_controller_.get(); 379 return window_cycle_controller_.get();
379 } 380 }
380 WindowSelectorController* window_selector_controller() { 381 WindowSelectorController* window_selector_controller() {
381 return window_selector_controller_.get(); 382 return window_selector_controller_.get();
382 } 383 }
383 FocusCycler* focus_cycler() { return focus_cycler_.get(); } 384 FocusCycler* focus_cycler() { return focus_cycler_.get(); }
384 DisplayController* display_controller() { 385 DisplayController* display_controller() {
385 return display_controller_.get(); 386 return display_controller_.get();
386 } 387 }
387 #if defined(OS_CHROMEOS) && defined(USE_X11) 388 #if defined(OS_CHROMEOS)
388 TouchTransformerController* touch_transformer_controller() { 389 TouchTransformerController* touch_transformer_controller() {
389 return touch_transformer_controller_.get(); 390 return touch_transformer_controller_.get();
390 } 391 }
391 #endif // defined(OS_CHROMEOS) && defined(USE_X11) 392 #endif // defined(OS_CHROMEOS) && defined(USE_X11)
392 MouseCursorEventFilter* mouse_cursor_filter() { 393 MouseCursorEventFilter* mouse_cursor_filter() {
393 return mouse_cursor_filter_.get(); 394 return mouse_cursor_filter_.get();
394 } 395 }
395 EventTransformationHandler* event_transformation_handler() { 396 EventTransformationHandler* event_transformation_handler() {
396 return event_transformation_handler_.get(); 397 return event_transformation_handler_.get();
397 } 398 }
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
722 last_window_closed_logout_reminder_; 723 last_window_closed_logout_reminder_;
723 // Controls video output device state. 724 // Controls video output device state.
724 scoped_ptr<ui::DisplayConfigurator> display_configurator_; 725 scoped_ptr<ui::DisplayConfigurator> display_configurator_;
725 scoped_ptr<DisplayConfiguratorAnimation> display_configurator_animation_; 726 scoped_ptr<DisplayConfiguratorAnimation> display_configurator_animation_;
726 scoped_ptr<DisplayErrorObserver> display_error_observer_; 727 scoped_ptr<DisplayErrorObserver> display_error_observer_;
727 scoped_ptr<ProjectingObserver> projecting_observer_; 728 scoped_ptr<ProjectingObserver> projecting_observer_;
728 729
729 // Listens for output changes and updates the display manager. 730 // Listens for output changes and updates the display manager.
730 scoped_ptr<DisplayChangeObserver> display_change_observer_; 731 scoped_ptr<DisplayChangeObserver> display_change_observer_;
731 732
733 scoped_ptr<TouchTransformerController> touch_transformer_controller_;
734
732 #if defined(USE_X11) 735 #if defined(USE_X11)
733 scoped_ptr<ui::EventHandler> magnifier_key_scroll_handler_; 736 scoped_ptr<ui::EventHandler> magnifier_key_scroll_handler_;
734 scoped_ptr<ui::EventHandler> speech_feedback_handler_; 737 scoped_ptr<ui::EventHandler> speech_feedback_handler_;
735 scoped_ptr<TouchTransformerController> touch_transformer_controller_;
736 #endif // defined(USE_X11) 738 #endif // defined(USE_X11)
737 #endif // defined(OS_CHROMEOS) 739 #endif // defined(OS_CHROMEOS)
738 740
739 scoped_ptr<MaximizeModeController> maximize_mode_controller_; 741 scoped_ptr<MaximizeModeController> maximize_mode_controller_;
740 742
741 // |native_cursor_manager_| is owned by |cursor_manager_|, but we keep a 743 // |native_cursor_manager_| is owned by |cursor_manager_|, but we keep a
742 // pointer to vend to test code. 744 // pointer to vend to test code.
743 AshNativeCursorManager* native_cursor_manager_; 745 AshNativeCursorManager* native_cursor_manager_;
744 746
745 // Cursor may be hidden on certain key events in ChromeOS, whereas we never hide 747 // Cursor may be hidden on certain key events in ChromeOS, whereas we never hide
(...skipping 13 matching lines...) Expand all
759 761
760 // Injected content::GPUDataManager support. 762 // Injected content::GPUDataManager support.
761 scoped_ptr<GPUSupport> gpu_support_; 763 scoped_ptr<GPUSupport> gpu_support_;
762 764
763 DISALLOW_COPY_AND_ASSIGN(Shell); 765 DISALLOW_COPY_AND_ASSIGN(Shell);
764 }; 766 };
765 767
766 } // namespace ash 768 } // namespace ash
767 769
768 #endif // ASH_SHELL_H_ 770 #endif // ASH_SHELL_H_
OLDNEW
« no previous file with comments | « ash/ash.gyp ('k') | ash/shell.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698