Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(421)

Unified Diff: content/browser/renderer_host/input/input_router_impl.cc

Issue 2722113007: Disable the passthrough touch event queue for now. (Closed)
Patch Set: Fix failing test Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | content/browser/renderer_host/input/input_router_impl_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « no previous file | content/browser/renderer_host/input/input_router_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698