| Index: ash/root_window_controller.cc
|
| diff --git a/ash/root_window_controller.cc b/ash/root_window_controller.cc
|
| index 6ba028a3fd122aa41e534c4abf0d679e01904e21..6754217fa6635556594792a66e31d1c91f70beee 100644
|
| --- a/ash/root_window_controller.cc
|
| +++ b/ash/root_window_controller.cc
|
| @@ -471,9 +471,11 @@ WmWindow* RootWindowController::FindEventTarget(
|
| gfx::Point location_in_root(location_in_screen);
|
| aura::Window* root_window = GetRootWindow();
|
| ::wm::ConvertPointFromScreen(root_window, &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::PointerDetails(ui::EventPointerType::POINTER_TYPE_MOUSE,
|
| + ui::PointerEvent::kMousePointerId));
|
| ui::EventTarget* event_handler =
|
| root_window->GetHost()
|
| ->dispatcher()
|
|
|