| 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 b6fcb790b718ef50108ddf78fff7dec52feceb20..0448da2c0ef4194ea4e909ae1b359f02e88aec87 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
 | 
| @@ -69,9 +69,9 @@ PP_Bool HandleInputEvent(PP_Instance instance, PP_Resource input_event) {
 | 
|      case PP_INPUTEVENT_TYPE_UNDEFINED:
 | 
|        return PP_FALSE;
 | 
|      // TODO(nfullagar): Implement support for event types below.
 | 
| -    case PP_INPUTEVENT_TYPE_COMPOSITION_START:
 | 
| -    case PP_INPUTEVENT_TYPE_COMPOSITION_UPDATE:
 | 
| -    case PP_INPUTEVENT_TYPE_COMPOSITION_END:
 | 
| +    case PP_INPUTEVENT_TYPE_IME_COMPOSITION_START:
 | 
| +    case PP_INPUTEVENT_TYPE_IME_COMPOSITION_UPDATE:
 | 
| +    case PP_INPUTEVENT_TYPE_IME_COMPOSITION_END:
 | 
|      case PP_INPUTEVENT_TYPE_IME_TEXT:
 | 
|        DebugPrintf("   No implementation for event type %d\n",
 | 
|            data.event_type);
 | 
| 
 |