| Index: ppapi/proxy/resource_creation_proxy.cc
|
| diff --git a/ppapi/proxy/resource_creation_proxy.cc b/ppapi/proxy/resource_creation_proxy.cc
|
| index bc9d0e872cd1e9590f8666087fe7ed8819d7c60f..a56ad6e4323b4bd05b7936e533927e360c416e83 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 PPB_InputEvent_Proxy::CreateProxyResource(instance, data);
|
| }
|
|
|