| 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 c70e0cc831ecfc5c96eedd3a38f85f5fc01e6c8d..98c51ce6bfccccbaede49d71b67c0803a68280df 100644
|
| --- a/content/browser/renderer_host/render_widget_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_widget_host_impl.cc
|
| @@ -1911,17 +1911,6 @@ bool RenderWidgetHostImpl::IgnoreInputEvents() const {
|
| return ignore_input_events_ || process_->IgnoreInputEvents();
|
| }
|
|
|
| -bool RenderWidgetHostImpl::ShouldForwardTouchEvent() const {
|
| - // It's important that the emulator sees a complete native touch stream,
|
| - // allowing it to perform touch filtering as appropriate.
|
| - // TODO(dgozman): Remove when touch stream forwarding issues resolved, see
|
| - // crbug.com/375940.
|
| - if (touch_emulator_ && touch_emulator_->enabled())
|
| - return true;
|
| -
|
| - return input_router_->ShouldForwardTouchEvent();
|
| -}
|
| -
|
| void RenderWidgetHostImpl::StartUserGesture() {
|
| OnUserGesture();
|
| }
|
|
|