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/ppp_text_input_proxy.h

Issue 18671004: PPAPI: Move IMEInputEvent and TextInput to stable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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
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);
};

Powered by Google App Engine
This is Rietveld 408576698