| Index: ppapi/proxy/ppb_context_3d_proxy.cc
|
| diff --git a/ppapi/proxy/ppb_context_3d_proxy.cc b/ppapi/proxy/ppb_context_3d_proxy.cc
|
| index 9bf9098207308919a376d39abe2a3de4cf2257f5..1c33a22ade30d60996f1017ac1557e185ddeba6c 100644
|
| --- a/ppapi/proxy/ppb_context_3d_proxy.cc
|
| +++ b/ppapi/proxy/ppb_context_3d_proxy.cc
|
| @@ -578,7 +578,7 @@ PP_Resource PPB_Context3D_Proxy::Create(PP_Instance instance,
|
|
|
| if (result.is_null())
|
| return 0;
|
| - linked_ptr<Context3D> context_3d(new Context3D(result));
|
| + scoped_refptr<Context3D> context_3d(new Context3D(result));
|
| if (!context_3d->CreateImplementation())
|
| return 0;
|
| return PluginResourceTracker::GetInstance()->AddResource(context_3d);
|
|
|