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

Unified Diff: content/renderer/render_view_impl.h

Issue 9802006: Implement active wheel fling transfer via WebCompositorInputHandlerClient (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comments 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: content/renderer/render_view_impl.h
diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h
index 9f097ed73ac7f746a130b397c7a23dd1344b8a6f..175684ba241ef110a98a45c73955049d651427b4 100644
--- a/content/renderer/render_view_impl.h
+++ b/content/renderer/render_view_impl.h
@@ -134,6 +134,7 @@ class WebTouchEvent;
class WebURLLoader;
class WebURLRequest;
class WebUserMediaClient;
+struct WebActiveWheelFlingParameters;
struct WebFileChooserParams;
struct WebFindOptions;
struct WebMediaPlayerAction;
@@ -323,6 +324,9 @@ class RenderViewImpl : public RenderWidget,
webkit::WebPluginInfo* plugin_info,
std::string* actual_mime_type);
+ void TransferActiveWheelFlingAnimation(
+ const WebKit::WebActiveWheelFlingParameters& params);
+
// IPC::Channel::Listener implementation -------------------------------------
virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
@@ -339,6 +343,7 @@ class RenderViewImpl : public RenderWidget,
virtual bool requestPointerLock();
virtual void requestPointerUnlock();
virtual bool isPointerLocked();
+ virtual void didActivateCompositor(int input_handler_identifier);
// WebKit::WebViewClient implementation --------------------------------------

Powered by Google App Engine
This is Rietveld 408576698