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

Unified Diff: Source/WebKit/chromium/src/WebCompositorInputHandlerImpl.cpp

Issue 9941001: Merge 112363 - [chromium] Send wheel events to main thread even if we think nothing is scrollable (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1084/
Patch Set: Created 8 years, 9 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 | « Source/WebKit/chromium/ChangeLog ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebKit/chromium/src/WebCompositorInputHandlerImpl.cpp
===================================================================
--- Source/WebKit/chromium/src/WebCompositorInputHandlerImpl.cpp (revision 112599)
+++ Source/WebKit/chromium/src/WebCompositorInputHandlerImpl.cpp (working copy)
@@ -187,7 +187,9 @@
return DidHandle;
}
case CCInputHandlerClient::ScrollIgnored:
- return DropEvent;
+ // FIXME: This should be DropEvent, but in cases where we fail to properly sync scrollability it's safer to send the
+ // event to the main thread. Change back to DropEvent once we have synchronization bugs sorted out.
+ return DidNotHandle;
case CCInputHandlerClient::ScrollFailed:
return DidNotHandle;
}
« no previous file with comments | « Source/WebKit/chromium/ChangeLog ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698