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

Unified Diff: trunk/src/content/common/view_messages.h

Issue 79143002: Revert 236254 "Replace old with new synthetic gesture framework." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 1 month 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 | « trunk/src/content/common/input_messages.h ('k') | trunk/src/content/content_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/content/common/view_messages.h
===================================================================
--- trunk/src/content/common/view_messages.h (revision 236262)
+++ trunk/src/content/common/view_messages.h (working copy)
@@ -923,6 +923,9 @@
// compositor path.
IPC_MESSAGE_ROUTED0(ViewMsg_SwapBuffers_ACK)
+// Tells the render widget that a smooth scroll completed.
+IPC_MESSAGE_ROUTED0(ViewMsg_SyntheticGestureCompleted)
+
// Tells the renderer to focus the first (last if reverse is true) focusable
// node.
IPC_MESSAGE_ROUTED1(ViewMsg_SetInitialFocus,
@@ -1665,6 +1668,26 @@
IPC_MESSAGE_ROUTED1(ViewHostMsg_DidActivateAcceleratedCompositing,
bool /* true if the accelerated compositor is actve */)
+IPC_STRUCT_BEGIN(ViewHostMsg_BeginSmoothScroll_Params)
+ IPC_STRUCT_MEMBER(bool, scroll_down)
+ IPC_STRUCT_MEMBER(int32, pixels_to_scroll)
+ IPC_STRUCT_MEMBER(int32, mouse_event_x)
+ IPC_STRUCT_MEMBER(int32, mouse_event_y)
+IPC_STRUCT_END()
+
+IPC_MESSAGE_ROUTED1(ViewHostMsg_BeginSmoothScroll,
+ ViewHostMsg_BeginSmoothScroll_Params /* params */)
+
+IPC_STRUCT_BEGIN(ViewHostMsg_BeginPinch_Params)
+ IPC_STRUCT_MEMBER(bool, zoom_in)
+ IPC_STRUCT_MEMBER(int32, pixels_to_move)
+ IPC_STRUCT_MEMBER(int32, anchor_x)
+ IPC_STRUCT_MEMBER(int32, anchor_y)
+IPC_STRUCT_END()
+
+IPC_MESSAGE_ROUTED1(ViewHostMsg_BeginPinch,
+ ViewHostMsg_BeginPinch_Params /* params */)
+
IPC_MESSAGE_ROUTED0(ViewHostMsg_Focus)
IPC_MESSAGE_ROUTED0(ViewHostMsg_Blur)
« no previous file with comments | « trunk/src/content/common/input_messages.h ('k') | trunk/src/content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698