diff options
Diffstat (limited to 'remoting/client/plugin/pepper_input_handler.cc')
-rw-r--r-- | remoting/client/plugin/pepper_input_handler.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/remoting/client/plugin/pepper_input_handler.cc b/remoting/client/plugin/pepper_input_handler.cc index 81ace4e..16a5738 100644 --- a/remoting/client/plugin/pepper_input_handler.cc +++ b/remoting/client/plugin/pepper_input_handler.cc @@ -33,7 +33,8 @@ void PepperInputHandler::HandleCharacterEvent( // TODO(garykac): Coordinate key and char events. } -void PepperInputHandler::HandleMouseMoveEvent(const PP_InputEvent_Mouse& event) { +void PepperInputHandler::HandleMouseMoveEvent( + const PP_InputEvent_Mouse& event) { SendMouseMoveEvent(static_cast<int>(event.x), static_cast<int>(event.y)); } |