| Index: content/browser/renderer_host/render_widget_host_impl.cc
|
| diff --git a/content/browser/renderer_host/render_widget_host_impl.cc b/content/browser/renderer_host/render_widget_host_impl.cc
|
| index 2c9d0d2cb200ad954da2e802efaa9533c3f01721..e7bb1f29e588230fea6720adf76fb77372166fca 100644
|
| --- a/content/browser/renderer_host/render_widget_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_widget_host_impl.cc
|
| @@ -918,11 +918,11 @@ void RenderWidgetHostImpl::ForwardMouseEvent(const WebMouseEvent& mouse_event) {
|
| }
|
|
|
| if (mouse_event.type == WebInputEvent::MouseDown &&
|
| - gesture_event_filter_->GetTapSuppressionController()->
|
| + gesture_event_filter_->GetTouchpadTapSuppressionController()->
|
| ShouldDeferMouseDown(mouse_event))
|
| return;
|
| if (mouse_event.type == WebInputEvent::MouseUp &&
|
| - gesture_event_filter_->GetTapSuppressionController()->
|
| + gesture_event_filter_->GetTouchpadTapSuppressionController()->
|
| ShouldSuppressMouseUp())
|
| return;
|
|
|
| @@ -1000,7 +1000,7 @@ void RenderWidgetHostImpl::ForwardGestureEvent(
|
| }
|
|
|
| // Forwards MouseEvent without passing it through
|
| -// TouchpadTapSuppressionController
|
| +// TouchpadTapSuppressionController.
|
| void RenderWidgetHostImpl::ForwardMouseEventImmediately(
|
| const WebMouseEvent& mouse_event) {
|
| TRACE_EVENT2("renderer_host",
|
|
|