| Index: content/browser/renderer_host/input/input_router_impl.cc
|
| diff --git a/content/browser/renderer_host/input/input_router_impl.cc b/content/browser/renderer_host/input/input_router_impl.cc
|
| index 3d418d7d382382bf970f77edbead5d692e8b3c32..686d0ef6dedfe90ed2797bc7376b74bd421a0351 100644
|
| --- a/content/browser/renderer_host/input/input_router_impl.cc
|
| +++ b/content/browser/renderer_host/input/input_router_impl.cc
|
| @@ -94,12 +94,16 @@ InputRouterImpl::InputRouterImpl(IPC::Sender* sender,
|
| features::kTouchpadAndWheelScrollLatching)),
|
| gesture_event_queue_(this, this, config.gesture_config),
|
| device_scale_factor_(1.f) {
|
| - if (base::FeatureList::IsEnabled(features::kRafAlignedTouchInputEvents))
|
| + // TODO(dtapuska): Figure out regression caused by activating
|
| + // the passthrough queue. crbug.com/697871
|
| + if (false &&
|
| + base::FeatureList::IsEnabled(features::kRafAlignedTouchInputEvents)) {
|
| touch_event_queue_.reset(
|
| new PassthroughTouchEventQueue(this, config.touch_config));
|
| - else
|
| + } else {
|
| touch_event_queue_.reset(
|
| new LegacyTouchEventQueue(this, config.touch_config));
|
| + }
|
|
|
| DCHECK(sender);
|
| DCHECK(client);
|
|
|