| Index: ash/wm/workspace/multi_window_resize_controller.cc
|
| diff --git a/ash/wm/workspace/multi_window_resize_controller.cc b/ash/wm/workspace/multi_window_resize_controller.cc
|
| index 067275b59bc64efafb619d5e2f0a62bdd8f5a927..08f5b4611cf9f9dc337ebcb18b3b94c891ff2271 100644
|
| --- a/ash/wm/workspace/multi_window_resize_controller.cc
|
| +++ b/ash/wm/workspace/multi_window_resize_controller.cc
|
| @@ -549,9 +549,10 @@ bool MultiWindowResizeController::IsOverWindows(
|
| gfx::Point location_in_root(location_in_screen);
|
| aura::Window* root = windows_.window1->GetRootWindow();
|
| ::wm::ConvertPointFromScreen(root, &location_in_root);
|
| - ui::MouseEvent test_event(ui::ET_MOUSE_MOVED, location_in_root,
|
| - location_in_root, ui::EventTimeForNow(),
|
| - ui::EF_NONE, ui::EF_NONE);
|
| + ui::MouseEvent test_event(
|
| + ui::ET_MOUSE_MOVED, location_in_root, location_in_root,
|
| + ui::EventTimeForNow(), ui::EF_NONE, ui::EF_NONE,
|
| + ui::PointerEventDetails(ui::EventPointerType::POINTER_TYPE_MOUSE));
|
| ui::EventTarget* event_handler = static_cast<ui::EventTarget*>(root)
|
| ->GetEventTargeter()
|
| ->FindTargetForEvent(root, &test_event);
|
|
|