Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(313)

Unified Diff: webkit/plugins/ppapi/event_conversion.cc

Issue 7621010: Never submit: tentative Pepper IME. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: snapshot. Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/glue/webkit_glue.gypi ('k') | webkit/plugins/ppapi/plugin_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « webkit/glue/webkit_glue.gypi ('k') | webkit/plugins/ppapi/plugin_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698