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

Side by Side Diff: ash/shell.h

Issue 2932563002: Implement cursor changing on Mushrome (Closed)
Patch Set: why would you put that there Created 3 years, 6 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
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 <memory> 8 #include <memory>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 class VisibilityController; 86 class VisibilityController;
87 class WindowModalityController; 87 class WindowModalityController;
88 } 88 }
89 89
90 namespace ash { 90 namespace ash {
91 91
92 class AcceleratorController; 92 class AcceleratorController;
93 class AccessibilityDelegate; 93 class AccessibilityDelegate;
94 class AshDisplayController; 94 class AshDisplayController;
95 class AppListDelegateImpl; 95 class AppListDelegateImpl;
96 class AshNativeCursorManager; 96 class NativeCursorManagerAsh;
97 class AshTouchTransformController; 97 class AshTouchTransformController;
98 class AutoclickController; 98 class AutoclickController;
99 class BluetoothNotificationController; 99 class BluetoothNotificationController;
100 class BrightnessControlDelegate; 100 class BrightnessControlDelegate;
101 class CastConfigController; 101 class CastConfigController;
102 class DisplayColorManager; 102 class DisplayColorManager;
103 class DisplayConfigurationController; 103 class DisplayConfigurationController;
104 class DisplayErrorObserver; 104 class DisplayErrorObserver;
105 class DragDropController; 105 class DragDropController;
106 class EventClientImpl; 106 class EventClientImpl;
(...skipping 698 matching lines...) Expand 10 before | Expand all | Expand 10 after
805 std::unique_ptr<AshTouchTransformController> touch_transformer_controller_; 805 std::unique_ptr<AshTouchTransformController> touch_transformer_controller_;
806 806
807 std::unique_ptr<ui::EventHandler> magnifier_key_scroll_handler_; 807 std::unique_ptr<ui::EventHandler> magnifier_key_scroll_handler_;
808 std::unique_ptr<ui::EventHandler> speech_feedback_handler_; 808 std::unique_ptr<ui::EventHandler> speech_feedback_handler_;
809 std::unique_ptr<LaserPointerController> laser_pointer_controller_; 809 std::unique_ptr<LaserPointerController> laser_pointer_controller_;
810 std::unique_ptr<PartialMagnificationController> 810 std::unique_ptr<PartialMagnificationController>
811 partial_magnification_controller_; 811 partial_magnification_controller_;
812 812
813 // |native_cursor_manager_| is owned by |cursor_manager_|, but we keep a 813 // |native_cursor_manager_| is owned by |cursor_manager_|, but we keep a
814 // pointer to vend to test code. 814 // pointer to vend to test code.
815 AshNativeCursorManager* native_cursor_manager_; 815 NativeCursorManagerAsh* native_cursor_manager_;
816 816
817 // Cursor may be hidden on certain key events in Chrome OS, whereas we never 817 // Cursor may be hidden on certain key events in Chrome OS, whereas we never
818 // hide the cursor on Windows. 818 // hide the cursor on Windows.
819 std::unique_ptr<::wm::CursorManager> cursor_manager_; 819 std::unique_ptr<::wm::CursorManager> cursor_manager_;
820 820
821 // For testing only: simulate that a modal window is open 821 // For testing only: simulate that a modal window is open
822 bool simulate_modal_window_open_for_testing_; 822 bool simulate_modal_window_open_for_testing_;
823 823
824 bool is_touch_hud_projection_enabled_; 824 bool is_touch_hud_projection_enabled_;
825 825
(...skipping 11 matching lines...) Expand all
837 base::ObserverList<ShellObserver> shell_observers_; 837 base::ObserverList<ShellObserver> shell_observers_;
838 838
839 scoped_refptr<base::SequencedWorkerPool> blocking_pool_; 839 scoped_refptr<base::SequencedWorkerPool> blocking_pool_;
840 840
841 DISALLOW_COPY_AND_ASSIGN(Shell); 841 DISALLOW_COPY_AND_ASSIGN(Shell);
842 }; 842 };
843 843
844 } // namespace ash 844 } // namespace ash
845 845
846 #endif // ASH_SHELL_H_ 846 #endif // ASH_SHELL_H_
OLDNEW
« no previous file with comments | « ash/BUILD.gn ('k') | ash/shell.cc » ('j') | ash/test/shell_test_api.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698