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

Unified Diff: Source/WebKit/chromium/public/WebCompositorInputHandlerClient.h

Issue 9931004: Merge 112364 - [chromium] Transfer wheel fling via WebCompositorInputHandlerClient (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
Index: Source/WebKit/chromium/public/WebCompositorInputHandlerClient.h
===================================================================
--- Source/WebKit/chromium/public/WebCompositorInputHandlerClient.h (revision 112613)
+++ Source/WebKit/chromium/public/WebCompositorInputHandlerClient.h (working copy)
@@ -28,6 +28,8 @@
namespace WebKit {
+struct WebActiveWheelFlingParameters;
+
class WebCompositorInputHandlerClient {
public:
// Callbacks invoked from the compositor thread.
@@ -42,6 +44,10 @@
// should be forwarded to the WebWidget associated with this compositor for further processing.
virtual void didNotHandleInputEvent(bool sendToWidget) = 0;
+ // Transfers an active wheel fling animation initiated by a previously handled input event out to the client.
+ // FIXME: Make pure virtual once implementation lands on Chromium side.
+ virtual void transferActiveWheelFlingAnimation(const WebActiveWheelFlingParameters&) { }
+
protected:
virtual ~WebCompositorInputHandlerClient() { }
};
« no previous file with comments | « Source/WebKit/chromium/public/WebActiveWheelFlingParameters.h ('k') | Source/WebKit/chromium/public/WebView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698