| Index: ui/aura/mus/window_tree_client.cc
|
| diff --git a/ui/aura/mus/window_tree_client.cc b/ui/aura/mus/window_tree_client.cc
|
| index 89481a1e81c78697e05993ded5a0e68043baa271..cf999af04ea082223b8040055438ab0b3203bdc7 100644
|
| --- a/ui/aura/mus/window_tree_client.cc
|
| +++ b/ui/aura/mus/window_tree_client.cc
|
| @@ -2000,6 +2000,16 @@ void WindowTreeClient::OnWindowTreeHostCancelWindowMove(
|
| WindowMus::Get(window_tree_host->window())->server_id());
|
| }
|
|
|
| +void WindowTreeClient::OnWindowTreeHostMoveCursorToDisplayLocation(
|
| + const gfx::Point& location_in_dips,
|
| + int64_t display_id) {
|
| + DCHECK(window_manager_client_);
|
| + if (window_manager_client_) {
|
| + window_manager_client_->WmMoveCursorToDisplayLocation(location_in_dips,
|
| + display_id);
|
| + }
|
| +}
|
| +
|
| std::unique_ptr<WindowPortMus> WindowTreeClient::CreateWindowPortForTopLevel(
|
| const std::map<std::string, std::vector<uint8_t>>* properties) {
|
| std::unique_ptr<WindowPortMus> window_port =
|
|
|