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

Side by Side Diff: ash/aura/shell_port_classic.h

Issue 2949353003: Implement large cursors in Mushrome. (Closed)
Patch Set: rename everything to CursorSize 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
« no previous file with comments | « no previous file | ash/aura/shell_port_classic.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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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_AURA_SHELL_PORT_CLASSIC_H_ 5 #ifndef ASH_AURA_SHELL_PORT_CLASSIC_H_
6 #define ASH_AURA_SHELL_PORT_CLASSIC_H_ 6 #define ASH_AURA_SHELL_PORT_CLASSIC_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 21 matching lines...) Expand all
32 32
33 // ShellPort: 33 // ShellPort:
34 void Shutdown() override; 34 void Shutdown() override;
35 Config GetAshConfig() const override; 35 Config GetAshConfig() const override;
36 std::unique_ptr<display::TouchTransformSetter> CreateTouchTransformDelegate() 36 std::unique_ptr<display::TouchTransformSetter> CreateTouchTransformDelegate()
37 override; 37 override;
38 void LockCursor() override; 38 void LockCursor() override;
39 void UnlockCursor() override; 39 void UnlockCursor() override;
40 void ShowCursor() override; 40 void ShowCursor() override;
41 void HideCursor() override; 41 void HideCursor() override;
42 void SetCursorSize(ui::CursorSize cursor_size) override;
42 void SetGlobalOverrideCursor(base::Optional<ui::CursorData> cursor) override; 43 void SetGlobalOverrideCursor(base::Optional<ui::CursorData> cursor) override;
43 bool IsMouseEventsEnabled() override; 44 bool IsMouseEventsEnabled() override;
44 void RecordGestureAction(GestureActionType action) override; 45 void RecordGestureAction(GestureActionType action) override;
45 void RecordUserMetricsAction(UserMetricsAction action) override; 46 void RecordUserMetricsAction(UserMetricsAction action) override;
46 void RecordTaskSwitchMetric(TaskSwitchSource source) override; 47 void RecordTaskSwitchMetric(TaskSwitchSource source) override;
47 std::unique_ptr<WindowResizer> CreateDragWindowResizer( 48 std::unique_ptr<WindowResizer> CreateDragWindowResizer(
48 std::unique_ptr<WindowResizer> next_window_resizer, 49 std::unique_ptr<WindowResizer> next_window_resizer,
49 wm::WindowState* window_state) override; 50 wm::WindowState* window_state) override;
50 std::unique_ptr<WindowCycleEventFilter> CreateWindowCycleEventFilter() 51 std::unique_ptr<WindowCycleEventFilter> CreateWindowCycleEventFilter()
51 override; 52 override;
(...skipping 27 matching lines...) Expand all
79 80
80 std::unique_ptr<AcceleratorControllerDelegateAura> 81 std::unique_ptr<AcceleratorControllerDelegateAura>
81 accelerator_controller_delegate_; 82 accelerator_controller_delegate_;
82 83
83 DISALLOW_COPY_AND_ASSIGN(ShellPortClassic); 84 DISALLOW_COPY_AND_ASSIGN(ShellPortClassic);
84 }; 85 };
85 86
86 } // namespace ash 87 } // namespace ash
87 88
88 #endif // ASH_AURA_SHELL_PORT_CLASSIC_H_ 89 #endif // ASH_AURA_SHELL_PORT_CLASSIC_H_
OLDNEW
« no previous file with comments | « no previous file | ash/aura/shell_port_classic.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698