OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #include "ui/aura/test/mus/test_window_manager_client.h" | 5 #include "ui/aura/test/mus/test_window_manager_client.h" |
6 | 6 |
7 namespace aura { | 7 namespace aura { |
8 | 8 |
9 TestWindowManagerClient::TestWindowManagerClient() {} | 9 TestWindowManagerClient::TestWindowManagerClient() {} |
10 | 10 |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 | 50 |
51 void TestWindowManagerClient::WmRequestClose(Id transport_window_id) {} | 51 void TestWindowManagerClient::WmRequestClose(Id transport_window_id) {} |
52 | 52 |
53 void TestWindowManagerClient::WmSetFrameDecorationValues( | 53 void TestWindowManagerClient::WmSetFrameDecorationValues( |
54 ui::mojom::FrameDecorationValuesPtr values) {} | 54 ui::mojom::FrameDecorationValuesPtr values) {} |
55 | 55 |
56 void TestWindowManagerClient::WmSetNonClientCursor(uint32_t window_id, | 56 void TestWindowManagerClient::WmSetNonClientCursor(uint32_t window_id, |
57 ui::CursorData cursor_data) { | 57 ui::CursorData cursor_data) { |
58 } | 58 } |
59 | 59 |
| 60 void TestWindowManagerClient::WmLockCursor() {} |
| 61 |
| 62 void TestWindowManagerClient::WmUnlockCursor() {} |
| 63 |
| 64 void TestWindowManagerClient::WmSetCursorVisible(bool visible) {} |
| 65 |
| 66 void TestWindowManagerClient::WmSetGlobalOverrideCursor( |
| 67 base::Optional<ui::CursorData> cursor) {} |
| 68 |
60 void TestWindowManagerClient::OnWmCreatedTopLevelWindow( | 69 void TestWindowManagerClient::OnWmCreatedTopLevelWindow( |
61 uint32_t change_id, | 70 uint32_t change_id, |
62 Id transport_window_id) {} | 71 Id transport_window_id) {} |
63 | 72 |
64 void TestWindowManagerClient::OnAcceleratorAck( | 73 void TestWindowManagerClient::OnAcceleratorAck( |
65 uint32_t event_id, | 74 uint32_t event_id, |
66 ui::mojom::EventResult result, | 75 ui::mojom::EventResult result, |
67 const std::unordered_map<std::string, std::vector<uint8_t>>& properties) {} | 76 const std::unordered_map<std::string, std::vector<uint8_t>>& properties) {} |
68 | 77 |
69 } // namespace aura | 78 } // namespace aura |
OLD | NEW |