| 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 598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 699 // Controls video output device state. | 698 // Controls video output device state. |
| 700 scoped_ptr<chromeos::OutputConfigurator> output_configurator_; | 699 scoped_ptr<chromeos::OutputConfigurator> output_configurator_; |
| 701 scoped_ptr<internal::OutputConfiguratorAnimation> | 700 scoped_ptr<internal::OutputConfiguratorAnimation> |
| 702 output_configurator_animation_; | 701 output_configurator_animation_; |
| 703 scoped_ptr<internal::DisplayErrorObserver> display_error_observer_; | 702 scoped_ptr<internal::DisplayErrorObserver> display_error_observer_; |
| 704 scoped_ptr<internal::ProjectingObserver> projecting_observer_; | 703 scoped_ptr<internal::ProjectingObserver> projecting_observer_; |
| 705 | 704 |
| 706 // Listens for output changes and updates the display manager. | 705 // Listens for output changes and updates the display manager. |
| 707 scoped_ptr<internal::DisplayChangeObserver> display_change_observer_; | 706 scoped_ptr<internal::DisplayChangeObserver> display_change_observer_; |
| 708 | 707 |
| 709 scoped_ptr<MagnifierKeyScroller> magnifier_key_scroller_; | 708 scoped_ptr<ui::EventHandler> magnifier_key_scroll_handler_; |
| 709 scoped_ptr<ui::EventHandler> speech_feedback_handler_; |
| 710 #endif // defined(USE_X11) | 710 #endif // defined(USE_X11) |
| 711 #endif // defined(OS_CHROMEOS) | 711 #endif // defined(OS_CHROMEOS) |
| 712 | 712 |
| 713 // |native_cursor_manager_| is owned by |cursor_manager_|, but we keep a | 713 // |native_cursor_manager_| is owned by |cursor_manager_|, but we keep a |
| 714 // pointer to vend to test code. | 714 // pointer to vend to test code. |
| 715 AshNativeCursorManager* native_cursor_manager_; | 715 AshNativeCursorManager* native_cursor_manager_; |
| 716 views::corewm::CursorManager cursor_manager_; | 716 views::corewm::CursorManager cursor_manager_; |
| 717 | 717 |
| 718 ObserverList<ShellObserver> observers_; | 718 ObserverList<ShellObserver> observers_; |
| 719 | 719 |
| 720 // For testing only: simulate that a modal window is open | 720 // For testing only: simulate that a modal window is open |
| 721 bool simulate_modal_window_open_for_testing_; | 721 bool simulate_modal_window_open_for_testing_; |
| 722 | 722 |
| 723 bool is_touch_hud_projection_enabled_; | 723 bool is_touch_hud_projection_enabled_; |
| 724 | 724 |
| 725 // Injected content::GPUDataManager support. | 725 // Injected content::GPUDataManager support. |
| 726 scoped_ptr<GPUSupport> gpu_support_; | 726 scoped_ptr<GPUSupport> gpu_support_; |
| 727 | 727 |
| 728 DISALLOW_COPY_AND_ASSIGN(Shell); | 728 DISALLOW_COPY_AND_ASSIGN(Shell); |
| 729 }; | 729 }; |
| 730 | 730 |
| 731 } // namespace ash | 731 } // namespace ash |
| 732 | 732 |
| 733 #endif // ASH_SHELL_H_ | 733 #endif // ASH_SHELL_H_ |
| OLD | NEW |