| Index: ppapi/proxy/ppb_graphics_3d_proxy.cc
|
| diff --git a/ppapi/proxy/ppb_graphics_3d_proxy.cc b/ppapi/proxy/ppb_graphics_3d_proxy.cc
|
| index 11250d9f34106abf19b40f30ca2c7fd65d405dbb..a82c9a512bee3404312894f1b4327de578205fd2 100644
|
| --- a/ppapi/proxy/ppb_graphics_3d_proxy.cc
|
| +++ b/ppapi/proxy/ppb_graphics_3d_proxy.cc
|
| @@ -448,7 +448,7 @@ PP_Resource PPB_Graphics3D_Proxy::CreateProxyResource(
|
| if (result.is_null())
|
| return 0;
|
|
|
| - linked_ptr<Graphics3D> graphics_3d(new Graphics3D(result));
|
| + scoped_refptr<Graphics3D> graphics_3d(new Graphics3D(result));
|
| if (!graphics_3d->Init())
|
| return 0;
|
|
|
|
|