Index: ppapi/proxy/ppp_text_input_proxy.h |
diff --git a/ppapi/proxy/ppp_text_input_proxy.h b/ppapi/proxy/ppp_text_input_proxy.h |
index 7ac0cacffabfa7cb71052eb2435da7580a6b1272..2ea29ae638a6ac66186d90951ebbd410f25d2471 100644 |
--- a/ppapi/proxy/ppp_text_input_proxy.h |
+++ b/ppapi/proxy/ppp_text_input_proxy.h |
@@ -6,8 +6,8 @@ |
#define PPAPI_PROXY_PPP_TEXT_INPUT_PROXY_H_ |
#include "base/compiler_specific.h" |
-#include "ppapi/c/dev/ppp_text_input_dev.h" |
#include "ppapi/c/pp_instance.h" |
+#include "ppapi/c/ppp_text_input.h" |
#include "ppapi/proxy/interface_proxy.h" |
namespace ppapi { |
@@ -18,7 +18,7 @@ class PPP_TextInput_Proxy : public InterfaceProxy { |
PPP_TextInput_Proxy(Dispatcher* dispatcher); |
virtual ~PPP_TextInput_Proxy(); |
- static const PPP_TextInput_Dev* GetProxyInterface(); |
+ static const PPP_TextInput* GetProxyInterface(); |
// InterfaceProxy implementation. |
virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; |
@@ -31,7 +31,7 @@ class PPP_TextInput_Proxy : public InterfaceProxy { |
// When this proxy is in the plugin side, this value caches the interface |
// pointer so we don't have to retrieve it from the dispatcher each time. |
// In the host, this value is always NULL. |
- const PPP_TextInput_Dev* ppp_text_input_impl_; |
+ const PPP_TextInput* ppp_text_input_impl_; |
DISALLOW_COPY_AND_ASSIGN(PPP_TextInput_Proxy); |
}; |