| OLD | NEW |
| 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 Loading... |
| 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 SetCursorSet(ui::CursorSet cursor_set) 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 Loading... |
| 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_ |
| OLD | NEW |