Index: views/touchui/gesture_manager.cc |
diff --git a/views/touchui/gesture_manager.cc b/views/touchui/gesture_manager.cc |
index cf966ae9200fc3339f7ec44900c84013e4f112f4..723db77792244d63a4763b5bbb500ebeb69516d7 100644 |
--- a/views/touchui/gesture_manager.cc |
+++ b/views/touchui/gesture_manager.cc |
@@ -36,8 +36,7 @@ bool GestureManager::ProcessTouchEventForGesture(const TouchEvent& event, |
// Conver the touch-event into a mouse-event. This mouse-event gets its |
// location information from the native-event, so it needs to convert the |
// coordinate to the target widget. |
- Event::FromNativeEvent2 from_native; |
- MouseEvent mouseev(event, from_native); |
+ MouseEvent mouseev(event); |
if (ViewsDelegate::views_delegate->GetDefaultParentView()) { |
// TODO(oshima): We may need to send the event back through |
// window manager to handle mouse capture correctly. |