| Index: ppapi/proxy/interface_list.cc
|
| diff --git a/ppapi/proxy/interface_list.cc b/ppapi/proxy/interface_list.cc
|
| index 036492ecdcf50ba9ca72fc7ec1e9ad7a447a0b7b..05941e216cef50310c269ebe6b366edfa2056995 100644
|
| --- a/ppapi/proxy/interface_list.cc
|
| +++ b/ppapi/proxy/interface_list.cc
|
| @@ -108,6 +108,7 @@
|
| #include "ppapi/proxy/ppp_messaging_proxy.h"
|
| #include "ppapi/proxy/ppp_mouse_lock_proxy.h"
|
| #include "ppapi/proxy/ppp_printing_proxy.h"
|
| +#include "ppapi/proxy/ppp_text_input_proxy.h"
|
| #include "ppapi/proxy/ppp_video_decoder_proxy.h"
|
| #include "ppapi/proxy/resource_creation_proxy.h"
|
| #include "ppapi/shared_impl/ppb_opengles2_shared.h"
|
| @@ -221,6 +222,9 @@ InterfaceList::InterfaceList() {
|
| AddProxy(API_ID_PPP_PRINTING, &ProxyFactory<PPP_Printing_Proxy>);
|
| AddPPP(PPP_PRINTING_DEV_INTERFACE, API_ID_PPP_PRINTING,
|
| PPP_Printing_Proxy::GetProxyInterface());
|
| + AddProxy(API_ID_PPP_TEXT_INPUT, &ProxyFactory<PPP_TextInput_Proxy>);
|
| + AddPPP(PPP_TEXTINPUT_DEV_INTERFACE, API_ID_PPP_TEXT_INPUT,
|
| + PPP_TextInput_Proxy::GetProxyInterface());
|
|
|
| // Old-style GetInfo PPP interfaces.
|
| // Do not add more stuff here, they should be added to interface_list*.h
|
|
|