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

Unified Diff: ppapi/proxy/resource_creation_proxy.cc

Issue 7715021: Add movement information to PPB_MouseInputEvent. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 years, 4 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 | « ppapi/proxy/resource_creation_proxy.h ('k') | ppapi/shared_impl/input_event_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/resource_creation_proxy.cc
diff --git a/ppapi/proxy/resource_creation_proxy.cc b/ppapi/proxy/resource_creation_proxy.cc
index 89d6504221aae8bb88407e8b66a506540f4567dd..bd020f3e0f6d09d4b895f17c0eb96bf4c92a19ff 100644
--- a/ppapi/proxy/resource_creation_proxy.cc
+++ b/ppapi/proxy/resource_creation_proxy.cc
@@ -227,7 +227,8 @@ PP_Resource ResourceCreationProxy::CreateMouseInputEvent(
uint32_t modifiers,
PP_InputEvent_MouseButton mouse_button,
const PP_Point* mouse_position,
- int32_t click_count) {
+ int32_t click_count,
+ const PP_Point* mouse_movement) {
if (type != PP_INPUTEVENT_TYPE_MOUSEDOWN &&
type != PP_INPUTEVENT_TYPE_MOUSEUP &&
type != PP_INPUTEVENT_TYPE_MOUSEMOVE &&
@@ -242,6 +243,7 @@ PP_Resource ResourceCreationProxy::CreateMouseInputEvent(
data.mouse_button = mouse_button;
data.mouse_position = *mouse_position;
data.mouse_click_count = click_count;
+ data.mouse_movement = *mouse_movement;
return (new InputEventImpl(InputEventImpl::InitAsProxy(),
instance, data))->GetReference();
« no previous file with comments | « ppapi/proxy/resource_creation_proxy.h ('k') | ppapi/shared_impl/input_event_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698