| Index: ppapi/native_client/src/trusted/plugin/plugin.cc
|
| diff --git a/ppapi/native_client/src/trusted/plugin/plugin.cc b/ppapi/native_client/src/trusted/plugin/plugin.cc
|
| index c4b1aafbc1fc2a2c2eeb6c3b57e97e0bfa1e8342..acda68918463e309e7128a7ea4d7fca1855129e1 100644
|
| --- a/ppapi/native_client/src/trusted/plugin/plugin.cc
|
| +++ b/ppapi/native_client/src/trusted/plugin/plugin.cc
|
| @@ -35,7 +35,6 @@
|
| #include "ppapi/c/private/ppb_nacl_private.h"
|
| #include "ppapi/cpp/dev/url_util_dev.h"
|
| #include "ppapi/cpp/module.h"
|
| -#include "ppapi/cpp/text_input_controller.h"
|
|
|
| #include "ppapi/native_client/src/trusted/plugin/file_utils.h"
|
| #include "ppapi/native_client/src/trusted/plugin/json_manifest.h"
|
| @@ -85,16 +84,6 @@ bool Plugin::EarlyInit(int argc, const char* argn[], const char* argv[]) {
|
| PLUGIN_PRINTF(("Plugin::EarlyInit (instance=%p)\n",
|
| static_cast<void*>(this)));
|
|
|
| -#ifdef NACL_OSX
|
| - // TODO(kochi): For crbug.com/102808, this is a stopgap solution for Lion
|
| - // until we expose IME API to .nexe. This disables any IME interference
|
| - // against key inputs, so you cannot use off-the-spot IME input for NaCl apps.
|
| - // This makes discrepancy among platforms and therefore we should remove
|
| - // this hack when IME API is made available.
|
| - // The default for non-Mac platforms is still off-the-spot IME mode.
|
| - pp::TextInputController(this).SetTextInputType(PP_TEXTINPUT_TYPE_NONE);
|
| -#endif
|
| -
|
| for (int i = 0; i < argc; ++i) {
|
| std::string name(argn[i]);
|
| std::string value(argv[i]);
|
|
|