Index: content/browser/renderer_host/ui_events_helper.cc |
diff --git a/content/browser/renderer_host/ui_events_helper.cc b/content/browser/renderer_host/ui_events_helper.cc |
index ace5682f73cfa21067a3b98e68df75a1b38c8bb4..1fdc5a5274e5e9da95a4af186998b935b31e9f07 100644 |
--- a/content/browser/renderer_host/ui_events_helper.cc |
+++ b/content/browser/renderer_host/ui_events_helper.cc |
@@ -90,9 +90,9 @@ bool MakeUITouchEventsFromWebTouchEvents( |
blink::WebGestureEvent MakeWebGestureEventFromUIEvent( |
const ui::GestureEvent& event) { |
- return ui::CreateWebGestureEvent(event.details(), event.time_stamp(), |
- event.location_f(), event.root_location_f(), |
- event.flags()); |
+ return ui::CreateWebGestureEvent( |
+ event.details(), event.time_stamp(), event.location_f(), |
+ event.root_location_f(), event.flags(), event.unique_touch_event_id()); |
} |
} // namespace content |