| Index: ppapi/proxy/ppb_graphics_3d_proxy.h
|
| diff --git a/ppapi/proxy/ppb_graphics_3d_proxy.h b/ppapi/proxy/ppb_graphics_3d_proxy.h
|
| index 310e0c2352548521a4b868b1b3fcd689d973f53a..91d5a14d67ed1e67a6a3cbe39ff47bcfabaad708 100644
|
| --- a/ppapi/proxy/ppb_graphics_3d_proxy.h
|
| +++ b/ppapi/proxy/ppb_graphics_3d_proxy.h
|
| @@ -61,9 +61,10 @@ class PPB_Graphics3D_Proxy : public InterfaceProxy {
|
| PPB_Graphics3D_Proxy(Dispatcher* dispatcher);
|
| virtual ~PPB_Graphics3D_Proxy();
|
|
|
| - static PP_Resource CreateProxyResource(PP_Instance instance,
|
| - PP_Resource share_context,
|
| - const int32_t* attrib_list);
|
| + static PP_Resource CreateProxyResource(
|
| + PP_Instance instance,
|
| + thunk::PPB_Graphics3D_API* share_context,
|
| + const int32_t* attrib_list);
|
|
|
| // InterfaceProxy implementation.
|
| virtual bool OnMessageReceived(const IPC::Message& msg);
|
| @@ -72,6 +73,7 @@ class PPB_Graphics3D_Proxy : public InterfaceProxy {
|
|
|
| private:
|
| void OnMsgCreate(PP_Instance instance,
|
| + HostResource share_context,
|
| const std::vector<int32_t>& attribs,
|
| HostResource* result);
|
| void OnMsgInitCommandBuffer(const HostResource& context);
|
|
|