| Index: ppapi/proxy/ppb_char_set_proxy.h
|
| ===================================================================
|
| --- ppapi/proxy/ppb_char_set_proxy.h (revision 100753)
|
| +++ ppapi/proxy/ppb_char_set_proxy.h (working copy)
|
| @@ -19,12 +19,15 @@
|
|
|
| class SerializedVarReturnValue;
|
|
|
| -class PPB_CharSet_Proxy : public InterfaceProxy,
|
| - public ppapi::thunk::PPB_CharSet_FunctionAPI {
|
| +class PPB_CharSet_Proxy : public ppapi::FunctionGroupBase,
|
| + public ppapi::thunk::PPB_CharSet_FunctionAPI,
|
| + public InterfaceProxy {
|
| public:
|
| - PPB_CharSet_Proxy(Dispatcher* dispatcher);
|
| + PPB_CharSet_Proxy(Dispatcher* dispatcher, const void* target_interface);
|
| virtual ~PPB_CharSet_Proxy();
|
|
|
| + static const Info* GetInfo();
|
| +
|
| // FunctionGroupBase overrides.
|
| virtual ppapi::thunk::PPB_CharSet_FunctionAPI* AsPPB_CharSet_FunctionAPI()
|
| OVERRIDE;
|
| @@ -45,8 +48,6 @@
|
| // 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);
|
|
|
|
|