diff options
author | jdduke@chromium.org <jdduke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-11 23:52:51 +0000 |
---|---|---|
committer | jdduke@chromium.org <jdduke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-11 23:52:51 +0000 |
commit | 04373a00610c07c2745ac94569ae51e658033bde (patch) | |
tree | 63ce3ec5d99b8888f39aea933531c14fe1372015 /content/browser/android | |
parent | 0f8fca5f32adcca1c0d3358cda7632bfa163b4fc (diff) | |
download | chromium_src-04373a00610c07c2745ac94569ae51e658033bde.zip chromium_src-04373a00610c07c2745ac94569ae51e658033bde.tar.gz chromium_src-04373a00610c07c2745ac94569ae51e658033bde.tar.bz2 |
[Android] Completely disable input debouncing during scroll
For input consistency, completely disable input debouncing, rather than
selectively for different event types. This fixes issues on flaky
instrumentation bots downstream.
BUG=315886,317816
NOTRY=true
Review URL: https://codereview.chromium.org/68163007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234327 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/android')
-rw-r--r-- | content/browser/android/content_startup_flags.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/android/content_startup_flags.cc b/content/browser/android/content_startup_flags.cc index e1bf8f9..11c7932 100644 --- a/content/browser/android/content_startup_flags.cc +++ b/content/browser/android/content_startup_flags.cc @@ -60,7 +60,7 @@ void SetContentCommandLineFlags(int max_render_process_count, parsed_command_line->AppendSwitch(switches::kEnableBeginFrameScheduling); parsed_command_line->AppendSwitch(switches::kEnableDeadlineScheduling); - parsed_command_line->AppendSwitch(switches::kDisableFlingDebounce); + parsed_command_line->AppendSwitch(switches::kDisableGestureDebounce); parsed_command_line->AppendSwitch(switches::kEnableGestureTapHighlight); parsed_command_line->AppendSwitch(switches::kEnablePinch); parsed_command_line->AppendSwitch(switches::kEnableOverlayFullscreenVideo); |