summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--remoting/client/plugin/pepper_input_handler.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/remoting/client/plugin/pepper_input_handler.cc b/remoting/client/plugin/pepper_input_handler.cc
index fcea92b..2e9eafd 100644
--- a/remoting/client/plugin/pepper_input_handler.cc
+++ b/remoting/client/plugin/pepper_input_handler.cc
@@ -93,6 +93,10 @@ bool PepperInputHandler::HandleInputEvent(const pp::InputEvent& event) {
return true;
}
+ case PP_INPUTEVENT_TYPE_CHAR:
+ // Consume but ignore character input events.
+ return true;
+
default: {
LOG(INFO) << "Unhandled input event: " << event.GetType();
break;