Index: ppapi/proxy/ppb_char_set_proxy.h |
=================================================================== |
--- ppapi/proxy/ppb_char_set_proxy.h (revision 100854) |
+++ ppapi/proxy/ppb_char_set_proxy.h (working copy) |
@@ -19,15 +19,12 @@ |
class SerializedVarReturnValue; |
-class PPB_CharSet_Proxy : public ppapi::FunctionGroupBase, |
- public ppapi::thunk::PPB_CharSet_FunctionAPI, |
- public InterfaceProxy { |
+class PPB_CharSet_Proxy : public InterfaceProxy, |
+ public ppapi::thunk::PPB_CharSet_FunctionAPI { |
public: |
- PPB_CharSet_Proxy(Dispatcher* dispatcher, const void* target_interface); |
+ PPB_CharSet_Proxy(Dispatcher* dispatcher); |
virtual ~PPB_CharSet_Proxy(); |
- static const Info* GetInfo(); |
- |
// FunctionGroupBase overrides. |
virtual ppapi::thunk::PPB_CharSet_FunctionAPI* AsPPB_CharSet_FunctionAPI() |
OVERRIDE; |
@@ -48,6 +45,8 @@ |
// InterfaceProxy implementation. |
virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; |
+ static const InterfaceID kInterfaceID = INTERFACE_ID_PPB_CHAR_SET; |
+ |
private: |
void OnMsgGetDefaultCharSet(PP_Instance instance, |
SerializedVarReturnValue result); |