Index: ppapi/native_client/src/shared/ppapi_proxy/browser_ppp_input_event.cc |
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/browser_ppp_input_event.cc b/ppapi/native_client/src/shared/ppapi_proxy/browser_ppp_input_event.cc |
index 0217db0472383c9cbe8f7a5df9b99b6797f9db88..65856a495e5b7795294ce1a8048d270adc153a58 100644 |
--- a/ppapi/native_client/src/shared/ppapi_proxy/browser_ppp_input_event.cc |
+++ b/ppapi/native_client/src/shared/ppapi_proxy/browser_ppp_input_event.cc |
@@ -7,9 +7,9 @@ |
#include "native_client/src/include/nacl_scoped_ptr.h" |
#include "native_client/src/include/portability.h" |
#include "native_client/src/shared/ppapi_proxy/browser_globals.h" |
+#include "native_client/src/shared/ppapi_proxy/browser_ppp.h" |
#include "native_client/src/shared/ppapi_proxy/input_event_data.h" |
#include "native_client/src/shared/ppapi_proxy/object_serialize.h" |
-#include "native_client/src/shared/ppapi_proxy/browser_ppp.h" |
#include "native_client/src/shared/ppapi_proxy/trusted/srpcgen/ppp_rpc.h" |
#include "native_client/src/shared/ppapi_proxy/utility.h" |
#include "ppapi/c/pp_resource.h" |
@@ -76,6 +76,13 @@ PP_Bool HandleInputEvent(PP_Instance instance, PP_Resource input_event) { |
DebugPrintf(" No implementation for event type %d\n", |
data.event_type); |
return PP_FALSE; |
+ case PP_INPUTEVENT_TYPE_TOUCHSTART: |
+ case PP_INPUTEVENT_TYPE_TOUCHMOVE: |
+ case PP_INPUTEVENT_TYPE_TOUCHEND: |
+ case PP_INPUTEVENT_TYPE_TOUCHCANCEL: |
+ DebugPrintf(" No implementation for event type %d\n", |
+ data.event_type); |
+ return PP_FALSE; |
// No default case; if any new types are added we should get a compile |
// warning. |
} |