From 04373a00610c07c2745ac94569ae51e658033bde Mon Sep 17 00:00:00 2001 From: "jdduke@chromium.org" Date: Mon, 11 Nov 2013 23:52:51 +0000 Subject: [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 --- content/browser/android/content_startup_flags.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'content/browser/android') 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); -- cgit v1.1