| Index: ash/drag_drop/drag_drop_controller.cc
|
| diff --git a/ash/drag_drop/drag_drop_controller.cc b/ash/drag_drop/drag_drop_controller.cc
|
| index 21510e7f5344ed1110541708b75932b220f34325..004298c7ee878e3af3e774ea3710b6704748c22e 100644
|
| --- a/ash/drag_drop/drag_drop_controller.cc
|
| +++ b/ash/drag_drop/drag_drop_controller.cc
|
| @@ -64,11 +64,12 @@
|
|
|
| void DispatchGestureEndToWindow(aura::Window* window) {
|
| if (window && window->delegate()) {
|
| - ui::GestureEvent gesture_end(0,
|
| - 0,
|
| - 0,
|
| - ui::EventTimeForNow(),
|
| - ui::GestureEventDetails(ui::ET_GESTURE_END));
|
| + ui::GestureEvent gesture_end(
|
| + 0,
|
| + 0,
|
| + 0,
|
| + ui::EventTimeForNow(),
|
| + ui::GestureEventDetails(ui::ET_GESTURE_END, 0, 0));
|
| window->delegate()->OnGestureEvent(&gesture_end);
|
| }
|
| }
|
|
|