| 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 21389137a0376763fc8dcedd8b794687195b3b16..cd05c8b6887622d8156e52db38a50c98d0611ff4 100644
|
| --- a/ppapi/native_client/src/trusted/plugin/plugin.cc
|
| +++ b/ppapi/native_client/src/trusted/plugin/plugin.cc
|
| @@ -53,7 +53,6 @@
|
| #include "ppapi/cpp/dev/find_dev.h"
|
| #include "ppapi/cpp/dev/printing_dev.h"
|
| #include "ppapi/cpp/dev/selection_dev.h"
|
| -#include "ppapi/cpp/dev/text_input_dev.h"
|
| #include "ppapi/cpp/dev/url_util_dev.h"
|
| #include "ppapi/cpp/dev/zoom_dev.h"
|
| #include "ppapi/cpp/image_data.h"
|
| @@ -61,6 +60,7 @@
|
| #include "ppapi/cpp/module.h"
|
| #include "ppapi/cpp/mouse_lock.h"
|
| #include "ppapi/cpp/rect.h"
|
| +#include "ppapi/cpp/text_input.h"
|
|
|
| namespace plugin {
|
|
|
| @@ -317,7 +317,7 @@ bool Plugin::Init(int argc, char* argn[], char* argv[]) {
|
| // 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::TextInput_Dev(this).SetTextInputType(PP_TEXTINPUT_TYPE_NONE);
|
| + pp::TextInput(this).SetTextInputType(PP_TEXTINPUT_TYPE_NONE);
|
| #endif
|
|
|
| // Remember the embed/object argn/argv pairs.
|
|
|