Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2607)

Unified Diff: ppapi/proxy/ppb_surface_3d_proxy.cc

Issue 7608030: Convert the PluginResource to be refcounted. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ppapi/proxy/ppb_surface_3d_proxy.cc
diff --git a/ppapi/proxy/ppb_surface_3d_proxy.cc b/ppapi/proxy/ppb_surface_3d_proxy.cc
index 2e432bcf2074d102a841a0ef6af65b7bb564ccc4..e522155d89201fdcf9390eb3d42784ee7033e7a0 100644
--- a/ppapi/proxy/ppb_surface_3d_proxy.cc
+++ b/ppapi/proxy/ppb_surface_3d_proxy.cc
@@ -136,7 +136,7 @@ PP_Resource PPB_Surface3D_Proxy::CreateProxyResource(
if (result.is_null())
return 0;
- linked_ptr<Surface3D> surface_3d(new Surface3D(result));
+ scoped_refptr<Surface3D> surface_3d(new Surface3D(result));
PP_Resource resource =
PluginResourceTracker::GetInstance()->AddResource(surface_3d);
surface_3d->set_resource(resource);

Powered by Google App Engine
This is Rietveld 408576698