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

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
« no previous file with comments | « ppapi/proxy/interface_id.h ('k') | ppapi/proxy/ppapi_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/plugin_dispatcher.cc
diff --git a/ppapi/proxy/plugin_dispatcher.cc b/ppapi/proxy/plugin_dispatcher.cc
index bb42fcb7a61b1a0354c02ee617d11a65057a00f2..9bead9afe79eb8ac3e94e56968b5ad4db48dc9c5 100644
--- a/ppapi/proxy/plugin_dispatcher.cc
+++ b/ppapi/proxy/plugin_dispatcher.cc
@@ -22,6 +22,7 @@
#include "ppapi/proxy/ppb_cursor_control_proxy.h"
#include "ppapi/proxy/ppb_font_proxy.h"
#include "ppapi/proxy/ppb_instance_proxy.h"
+#include "ppapi/proxy/ppb_text_input_proxy.h"
#include "ppapi/proxy/ppp_class_proxy.h"
#include "ppapi/proxy/resource_creation_proxy.h"
#include "ppapi/shared_impl/resource.h"
@@ -249,6 +250,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_TEXTINPUT)
+ proxy.reset(new PPB_TextInput_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)
« no previous file with comments | « ppapi/proxy/interface_id.h ('k') | ppapi/proxy/ppapi_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698