diff options
author | rbyers@chromium.org <rbyers@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-08 14:27:07 +0000 |
---|---|---|
committer | rbyers@chromium.org <rbyers@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-08 14:27:07 +0000 |
commit | ed1aab1d1c3d2321f845279d756a94dbf2e8c780 (patch) | |
tree | 9bc6d696d345cc521b5400471c1a54284fafb63a /android_webview/lib | |
parent | cae61d82ab3fcb95ca51548a20d2541f9d17eb16 (diff) | |
download | chromium_src-ed1aab1d1c3d2321f845279d756a94dbf2e8c780.zip chromium_src-ed1aab1d1c3d2321f845279d756a94dbf2e8c780.tar.gz chromium_src-ed1aab1d1c3d2321f845279d756a94dbf2e8c780.tar.bz2 |
Add --disable-compositor-touch-hit-testing flag
Plumb the flag to blink and the compositor.
Disable by default in Android webview for now.
Depends on blink CL: https://src.chromium.org/viewvc/blink?view=rev&revision=158956
BUG=303945
Review URL: https://codereview.chromium.org/25904004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@227511 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'android_webview/lib')
-rw-r--r-- | android_webview/lib/main/aw_main_delegate.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/android_webview/lib/main/aw_main_delegate.cc b/android_webview/lib/main/aw_main_delegate.cc index eff0be6..02f030f 100644 --- a/android_webview/lib/main/aw_main_delegate.cc +++ b/android_webview/lib/main/aw_main_delegate.cc @@ -75,6 +75,9 @@ bool AwMainDelegate::BasicStartupComplete(int* exit_code) { // Enable D-PAD navigation for application compatibility. cl->AppendSwitch(switches::kEnableSpatialNavigation); + // Disable compositor touch hit testing for now to mitigate risk of bugs. + cl->AppendSwitch(cc::switches::kDisableCompositorTouchHitTesting); + // Disable WebRTC. cl->AppendSwitch(switches::kDisableWebRTC); |