Index: ppapi/proxy/resource_creation_proxy.cc |
diff --git a/ppapi/proxy/resource_creation_proxy.cc b/ppapi/proxy/resource_creation_proxy.cc |
index 064410e8e77cd9aebdf79460bb5ed5755f0fc498..dd5b34345050aa0d78ba1aef2361b36de16da406 100644 |
--- a/ppapi/proxy/resource_creation_proxy.cc |
+++ b/ppapi/proxy/resource_creation_proxy.cc |
@@ -44,6 +44,7 @@ |
#include "ppapi/thunk/enter.h" |
#include "ppapi/thunk/ppb_image_data_api.h" |
+using ppapi::thunk::PPB_Graphics3D_API; |
using ppapi::thunk::ResourceCreationAPI; |
namespace ppapi { |
@@ -261,7 +262,7 @@ PP_Resource ResourceCreationProxy::CreateNetworkMonitor( |
PP_Resource ResourceCreationProxy::CreateGraphics3D( |
PP_Instance instance, |
- PP_Resource share_context, |
+ PPB_Graphics3D_API* share_context, |
const int32_t* attrib_list) { |
return PPB_Graphics3D_Proxy::CreateProxyResource( |
instance, share_context, attrib_list); |
@@ -269,7 +270,7 @@ PP_Resource ResourceCreationProxy::CreateGraphics3D( |
PP_Resource ResourceCreationProxy::CreateGraphics3DRaw( |
PP_Instance instance, |
- PP_Resource share_context, |
+ PPB_Graphics3D_API* share_context, |
const int32_t* attrib_list) { |
// Not proxied. The raw creation function is used only in the implementation |
// of the proxy on the host side. |