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

Side by Side Diff: ash/shell.h

Issue 613343005: Automatic deployment of the virtual keyboard. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix typo. Created 6 years, 1 month 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 649 matching lines...) Expand 10 before | Expand all | Expand 10 after
660 scoped_ptr<DesktopBackgroundController> desktop_background_controller_; 660 scoped_ptr<DesktopBackgroundController> desktop_background_controller_;
661 scoped_ptr<PowerButtonController> power_button_controller_; 661 scoped_ptr<PowerButtonController> power_button_controller_;
662 scoped_ptr<LockStateController> lock_state_controller_; 662 scoped_ptr<LockStateController> lock_state_controller_;
663 scoped_ptr<MruWindowTracker> mru_window_tracker_; 663 scoped_ptr<MruWindowTracker> mru_window_tracker_;
664 scoped_ptr< ::wm::UserActivityDetector> user_activity_detector_; 664 scoped_ptr< ::wm::UserActivityDetector> user_activity_detector_;
665 scoped_ptr<VideoDetector> video_detector_; 665 scoped_ptr<VideoDetector> video_detector_;
666 scoped_ptr<WindowCycleController> window_cycle_controller_; 666 scoped_ptr<WindowCycleController> window_cycle_controller_;
667 scoped_ptr<WindowSelectorController> window_selector_controller_; 667 scoped_ptr<WindowSelectorController> window_selector_controller_;
668 scoped_ptr<FocusCycler> focus_cycler_; 668 scoped_ptr<FocusCycler> focus_cycler_;
669 scoped_ptr<DisplayController> display_controller_; 669 scoped_ptr<DisplayController> display_controller_;
670 scoped_ptr<VirtualKeyboardController> virtual_keyboard_controller_;
671 scoped_ptr<HighContrastController> high_contrast_controller_; 670 scoped_ptr<HighContrastController> high_contrast_controller_;
672 scoped_ptr<MagnificationController> magnification_controller_; 671 scoped_ptr<MagnificationController> magnification_controller_;
673 scoped_ptr<PartialMagnificationController> partial_magnification_controller_; 672 scoped_ptr<PartialMagnificationController> partial_magnification_controller_;
674 scoped_ptr<AutoclickController> autoclick_controller_; 673 scoped_ptr<AutoclickController> autoclick_controller_;
675 scoped_ptr<aura::client::FocusClient> focus_client_; 674 scoped_ptr<aura::client::FocusClient> focus_client_;
676 aura::client::ActivationClient* activation_client_; 675 aura::client::ActivationClient* activation_client_;
677 676
678 scoped_ptr<MouseCursorEventFilter> mouse_cursor_filter_; 677 scoped_ptr<MouseCursorEventFilter> mouse_cursor_filter_;
679 scoped_ptr<ScreenPositionController> screen_position_controller_; 678 scoped_ptr<ScreenPositionController> screen_position_controller_;
680 scoped_ptr<SystemModalContainerEventFilter> modality_filter_; 679 scoped_ptr<SystemModalContainerEventFilter> modality_filter_;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
713 scoped_ptr<ui::UserActivityPowerManagerNotifier> user_activity_notifier_; 712 scoped_ptr<ui::UserActivityPowerManagerNotifier> user_activity_notifier_;
714 scoped_ptr<VideoActivityNotifier> video_activity_notifier_; 713 scoped_ptr<VideoActivityNotifier> video_activity_notifier_;
715 scoped_ptr<StickyKeysController> sticky_keys_controller_; 714 scoped_ptr<StickyKeysController> sticky_keys_controller_;
716 scoped_ptr<ResolutionNotificationController> 715 scoped_ptr<ResolutionNotificationController>
717 resolution_notification_controller_; 716 resolution_notification_controller_;
718 scoped_ptr<BluetoothNotificationController> 717 scoped_ptr<BluetoothNotificationController>
719 bluetooth_notification_controller_; 718 bluetooth_notification_controller_;
720 scoped_ptr<LogoutConfirmationController> logout_confirmation_controller_; 719 scoped_ptr<LogoutConfirmationController> logout_confirmation_controller_;
721 scoped_ptr<LastWindowClosedLogoutReminder> 720 scoped_ptr<LastWindowClosedLogoutReminder>
722 last_window_closed_logout_reminder_; 721 last_window_closed_logout_reminder_;
722 scoped_ptr<VirtualKeyboardController> virtual_keyboard_controller_;
723 // Controls video output device state. 723 // Controls video output device state.
724 scoped_ptr<ui::DisplayConfigurator> display_configurator_; 724 scoped_ptr<ui::DisplayConfigurator> display_configurator_;
725 scoped_ptr<DisplayConfiguratorAnimation> display_configurator_animation_; 725 scoped_ptr<DisplayConfiguratorAnimation> display_configurator_animation_;
726 scoped_ptr<DisplayErrorObserver> display_error_observer_; 726 scoped_ptr<DisplayErrorObserver> display_error_observer_;
727 scoped_ptr<ProjectingObserver> projecting_observer_; 727 scoped_ptr<ProjectingObserver> projecting_observer_;
728 728
729 // Listens for output changes and updates the display manager. 729 // Listens for output changes and updates the display manager.
730 scoped_ptr<DisplayChangeObserver> display_change_observer_; 730 scoped_ptr<DisplayChangeObserver> display_change_observer_;
731 731
732 #if defined(USE_X11) 732 #if defined(USE_X11)
(...skipping 26 matching lines...) Expand all
759 759
760 // Injected content::GPUDataManager support. 760 // Injected content::GPUDataManager support.
761 scoped_ptr<GPUSupport> gpu_support_; 761 scoped_ptr<GPUSupport> gpu_support_;
762 762
763 DISALLOW_COPY_AND_ASSIGN(Shell); 763 DISALLOW_COPY_AND_ASSIGN(Shell);
764 }; 764 };
765 765
766 } // namespace ash 766 } // namespace ash
767 767
768 #endif // ASH_SHELL_H_ 768 #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