| Index: ui/events/gestures/gesture_provider_aura.cc
|
| diff --git a/ui/events/gestures/gesture_provider_aura.cc b/ui/events/gestures/gesture_provider_aura.cc
|
| index 30200f93298763a0377919c2ce499bad8e0e4ee5..a731357dcd5184263b38e0c559e50def2689d006 100644
|
| --- a/ui/events/gestures/gesture_provider_aura.cc
|
| +++ b/ui/events/gestures/gesture_provider_aura.cc
|
| @@ -44,7 +44,6 @@ bool GestureProviderAura::OnTouchEvent(const TouchEvent& event) {
|
| return false;
|
| }
|
|
|
| - last_touch_event_flags_ = event.flags();
|
| last_touch_event_latency_info_ = *event.latency();
|
| pointer_state_.OnTouch(event);
|
|
|
| @@ -83,7 +82,7 @@ void GestureProviderAura::OnGestureEvent(
|
| scoped_ptr<ui::GestureEvent> event(
|
| new ui::GestureEvent(gesture.x,
|
| gesture.y,
|
| - last_touch_event_flags_,
|
| + gesture.flags,
|
| gesture.time - base::TimeTicks(),
|
| details));
|
|
|
|
|