| 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 8f0f8db5dbb21339400735436a5e9184b7f52c3b..b599485575564ade94e7a235fd1eee1d27a9c95d 100644
|
| --- a/content/browser/renderer_host/render_widget_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_widget_host_impl.cc
|
| @@ -912,11 +912,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;
|
|
|
| @@ -994,7 +994,7 @@ void RenderWidgetHostImpl::ForwardGestureEvent(
|
| }
|
|
|
| // Forwards MouseEvent without passing it through
|
| -// TouchpadTapSuppressionController
|
| +// TouchpadTapSuppressionController.
|
| void RenderWidgetHostImpl::ForwardMouseEventImmediately(
|
| const WebMouseEvent& mouse_event) {
|
| TRACE_EVENT2("renderer_host",
|
|
|