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

Unified Diff: ppapi/proxy/media_stream_video_track_resource.cc

Issue 1864293002: Convert //ppapi to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more nullptr Created 4 years, 8 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
« no previous file with comments | « ppapi/proxy/media_stream_track_resource_base.cc ('k') | ppapi/proxy/message_handler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/media_stream_video_track_resource.cc
diff --git a/ppapi/proxy/media_stream_video_track_resource.cc b/ppapi/proxy/media_stream_video_track_resource.cc
index 2942ff574fb598021ada98cd2fadb3dd6ae06f44..0f68000885f828b10094a709d40e46772c565d93 100644
--- a/ppapi/proxy/media_stream_video_track_resource.cc
+++ b/ppapi/proxy/media_stream_video_track_resource.cc
@@ -191,7 +191,7 @@ PP_Resource MediaStreamVideoTrackResource::GetVideoFrame() {
scoped_refptr<VideoFrameResource> resource =
new VideoFrameResource(pp_instance(), index, buffer);
// Add |pp_resource()| and |resource| into |frames_|.
- // |frames_| uses scoped_ptr<> to hold a ref of |resource|. It keeps the
+ // |frames_| uses std::unique_ptr<> to hold a ref of |resource|. It keeps the
// resource alive.
frames_.insert(FrameMap::value_type(resource->pp_resource(), resource));
return resource->GetReference();
« no previous file with comments | « ppapi/proxy/media_stream_track_resource_base.cc ('k') | ppapi/proxy/message_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698