| Index: webkit/plugins/ppapi/event_conversion.cc
|
| diff --git a/webkit/plugins/ppapi/event_conversion.cc b/webkit/plugins/ppapi/event_conversion.cc
|
| index 1c4ac3ac591895c65ff60042d373bc16994a5b9d..d9ac4c69f96943d157411e2afaf89ae4a76bf733 100644
|
| --- a/webkit/plugins/ppapi/event_conversion.cc
|
| +++ b/webkit/plugins/ppapi/event_conversion.cc
|
| @@ -307,6 +307,14 @@ WebInputEvent* CreateWebInputEvent(const InputEventData& event) {
|
| case PP_INPUTEVENT_TYPE_CHAR:
|
| web_input_event.reset(BuildCharEvent(event));
|
| break;
|
| + case PP_INPUTEVENT_TYPE_COMPOSITION_START:
|
| + case PP_INPUTEVENT_TYPE_COMPOSITION_UPDATE:
|
| + case PP_INPUTEVENT_TYPE_COMPOSITION_END:
|
| + case PP_INPUTEVENT_TYPE_IME_TEXT:
|
| + // TODO(kinaba) implement in WebKit an event structure to handle
|
| + // composition events.
|
| + NOTREACHED();
|
| + break;
|
| }
|
|
|
| return web_input_event.release();
|
|
|