Index: services/ui/ws/test_utils.h |
diff --git a/services/ui/ws/test_utils.h b/services/ui/ws/test_utils.h |
index cabef6e3c5b95958174b35a4f78df67090cea008..11627217555415ec5c77f0cb8f305387220d5bd5 100644 |
--- a/services/ui/ws/test_utils.h |
+++ b/services/ui/ws/test_utils.h |
@@ -262,6 +262,7 @@ class TestWindowManager : public mojom::WindowManager { |
return true; |
} |
+ bool on_perform_move_loop_called() { return on_perform_move_loop_called_; } |
bool on_accelerator_called() { return on_accelerator_called_; } |
uint32_t on_accelerator_id() { return on_accelerator_id_; } |
@@ -284,8 +285,15 @@ class TestWindowManager : public mojom::WindowManager { |
mojo::Map<mojo::String, mojo::Array<uint8_t>> properties) override; |
void WmClientJankinessChanged(ClientSpecificId client_id, |
bool janky) override; |
+ void WmPerformMoveLoop(uint32_t change_id, |
+ uint32_t window_id, |
+ mojom::MoveLoopSource source, |
+ const gfx::Point& cursor_location) override; |
+ void WmCancelMoveLoop(uint32_t window_id) override; |
void OnAccelerator(uint32_t id, std::unique_ptr<ui::Event> event) override; |
+ bool on_perform_move_loop_called_ = false; |
+ |
bool got_create_top_level_window_; |
uint32_t change_id_; |