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 <utility> | 8 #include <utility> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 class AshNativeCursorManager; | 80 class AshNativeCursorManager; |
81 class AutoclickController; | 81 class AutoclickController; |
82 class CapsLockDelegate; | 82 class CapsLockDelegate; |
83 class DesktopBackgroundController; | 83 class DesktopBackgroundController; |
84 class DisplayController; | 84 class DisplayController; |
85 class FirstRunHelper; | 85 class FirstRunHelper; |
86 class GPUSupport; | 86 class GPUSupport; |
87 class HighContrastController; | 87 class HighContrastController; |
88 class LockStateController; | 88 class LockStateController; |
89 class MagnificationController; | 89 class MagnificationController; |
90 class MagnifierKeyScroller; | |
91 class MediaDelegate; | 90 class MediaDelegate; |
92 class MruWindowTracker; | 91 class MruWindowTracker; |
93 class NestedDispatcherController; | 92 class NestedDispatcherController; |
94 class NewWindowDelegate; | 93 class NewWindowDelegate; |
95 class PartialMagnificationController; | 94 class PartialMagnificationController; |
96 class PowerButtonController; | 95 class PowerButtonController; |
97 class WindowTreeHostFactory; | 96 class WindowTreeHostFactory; |
98 class ScreenAsh; | 97 class ScreenAsh; |
99 class SessionStateDelegate; | 98 class SessionStateDelegate; |
100 class Shelf; | 99 class Shelf; |
(...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
693 // Controls video output device state. | 692 // Controls video output device state. |
694 scoped_ptr<chromeos::OutputConfigurator> output_configurator_; | 693 scoped_ptr<chromeos::OutputConfigurator> output_configurator_; |
695 scoped_ptr<internal::OutputConfiguratorAnimation> | 694 scoped_ptr<internal::OutputConfiguratorAnimation> |
696 output_configurator_animation_; | 695 output_configurator_animation_; |
697 scoped_ptr<internal::DisplayErrorObserver> display_error_observer_; | 696 scoped_ptr<internal::DisplayErrorObserver> display_error_observer_; |
698 scoped_ptr<internal::ProjectingObserver> projecting_observer_; | 697 scoped_ptr<internal::ProjectingObserver> projecting_observer_; |
699 | 698 |
700 // Listens for output changes and updates the display manager. | 699 // Listens for output changes and updates the display manager. |
701 scoped_ptr<internal::DisplayChangeObserver> display_change_observer_; | 700 scoped_ptr<internal::DisplayChangeObserver> display_change_observer_; |
702 | 701 |
703 scoped_ptr<MagnifierKeyScroller> magnifier_key_scroller_; | 702 scoped_ptr<ui::EventHandler> magnifier_key_scroll_handler_; |
| 703 scoped_ptr<ui::EventHandler> speech_feedback_handler_; |
704 #endif // defined(USE_X11) | 704 #endif // defined(USE_X11) |
705 #endif // defined(OS_CHROMEOS) | 705 #endif // defined(OS_CHROMEOS) |
706 | 706 |
707 // |native_cursor_manager_| is owned by |cursor_manager_|, but we keep a | 707 // |native_cursor_manager_| is owned by |cursor_manager_|, but we keep a |
708 // pointer to vend to test code. | 708 // pointer to vend to test code. |
709 AshNativeCursorManager* native_cursor_manager_; | 709 AshNativeCursorManager* native_cursor_manager_; |
710 views::corewm::CursorManager cursor_manager_; | 710 views::corewm::CursorManager cursor_manager_; |
711 | 711 |
712 ObserverList<ShellObserver> observers_; | 712 ObserverList<ShellObserver> observers_; |
713 | 713 |
714 // For testing only: simulate that a modal window is open | 714 // For testing only: simulate that a modal window is open |
715 bool simulate_modal_window_open_for_testing_; | 715 bool simulate_modal_window_open_for_testing_; |
716 | 716 |
717 bool is_touch_hud_projection_enabled_; | 717 bool is_touch_hud_projection_enabled_; |
718 | 718 |
719 // Injected content::GPUDataManager support. | 719 // Injected content::GPUDataManager support. |
720 scoped_ptr<GPUSupport> gpu_support_; | 720 scoped_ptr<GPUSupport> gpu_support_; |
721 | 721 |
722 DISALLOW_COPY_AND_ASSIGN(Shell); | 722 DISALLOW_COPY_AND_ASSIGN(Shell); |
723 }; | 723 }; |
724 | 724 |
725 } // namespace ash | 725 } // namespace ash |
726 | 726 |
727 #endif // ASH_SHELL_H_ | 727 #endif // ASH_SHELL_H_ |
OLD | NEW |