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

Unified Diff: ppapi/proxy/plugin_dispatcher.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
Index: ppapi/proxy/plugin_dispatcher.cc
diff --git a/ppapi/proxy/plugin_dispatcher.cc b/ppapi/proxy/plugin_dispatcher.cc
index 6aa6653f2091073e3656be0c97f801333e295b29..bd48dabe78a4e7f4f422d4ca2f8641d539f6624e 100644
--- a/ppapi/proxy/plugin_dispatcher.cc
+++ b/ppapi/proxy/plugin_dispatcher.cc
@@ -21,6 +21,7 @@
#include "ppapi/proxy/ppb_char_set_proxy.h"
#include "ppapi/proxy/ppb_cursor_control_proxy.h"
#include "ppapi/proxy/ppb_font_proxy.h"
+#include "ppapi/proxy/ppb_ime_control_proxy.h"
#include "ppapi/proxy/ppb_instance_proxy.h"
#include "ppapi/proxy/ppp_class_proxy.h"
#include "ppapi/proxy/resource_creation_proxy.h"
@@ -245,6 +246,8 @@ FunctionGroupBase* PluginDispatcher::GetFunctionAPI(InterfaceID id) {
proxy.reset(new PPB_CursorControl_Proxy(this, NULL));
else if (id == INTERFACE_ID_PPB_FONT)
proxy.reset(new PPB_Font_Proxy(this, NULL));
+ else if(id == INTERFACE_ID_PPB_IMECONTROL)
+ proxy.reset(new PPB_IMEControl_Proxy(this, NULL));
else if (id == INTERFACE_ID_PPB_INSTANCE)
proxy.reset(new PPB_Instance_Proxy(this, NULL));
else if (id == INTERFACE_ID_RESOURCE_CREATION)

Powered by Google App Engine
This is Rietveld 408576698