| Index: components/mus/ws/test_utils.cc
|
| diff --git a/components/mus/ws/test_utils.cc b/components/mus/ws/test_utils.cc
|
| index a371a0bb4708f24d86a1cfebdcbfad4651a3f8ae..b1fa72077b8a5c2de52038b8f4a9f668ab90d252 100644
|
| --- a/components/mus/ws/test_utils.cc
|
| +++ b/components/mus/ws/test_utils.cc
|
| @@ -163,6 +163,14 @@ void TestWindowManager::WmCreateTopLevelWindow(
|
| void TestWindowManager::WmClientJankinessChanged(ClientSpecificId client_id,
|
| bool janky) {}
|
|
|
| +void TestWindowManager::WmPerformMoveLoop(uint32_t change_id,
|
| + uint32_t window_id,
|
| + const gfx::Point& cursor_location) {
|
| + on_perform_move_loop_called_ = true;
|
| +}
|
| +
|
| +void TestWindowManager::WmCancelMoveLoop(uint32_t window_id) {}
|
| +
|
| void TestWindowManager::OnAccelerator(uint32_t id,
|
| std::unique_ptr<ui::Event> event) {
|
| on_accelerator_called_ = true;
|
| @@ -296,6 +304,12 @@ void TestWindowTreeClient::OnChangeCompleted(uint32_t change_id, bool success) {
|
| tracker_.OnChangeCompleted(change_id, success);
|
| }
|
|
|
| +void TestWindowTreeClient::OnMoveLoopCompleted(uint32_t change_id,
|
| + bool success) {
|
| + if (record_on_change_completed_)
|
| + tracker_.OnChangeCompleted(change_id, success);
|
| +}
|
| +
|
| void TestWindowTreeClient::RequestClose(uint32_t window_id) {}
|
|
|
| void TestWindowTreeClient::GetWindowManager(
|
|
|