| 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();
|
|
|