diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-01 04:16:27 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-01 04:16:27 +0000 |
commit | ad8e04ac88be37d5ccb6c2cf61f52b224dca493c (patch) | |
tree | 9bcb878643bdd9e5af6749fff469b2552e569907 /media/base/video_frame.cc | |
parent | 5af8043eb24ad60251d8a4e33192e3e6f59246a3 (diff) | |
download | chromium_src-ad8e04ac88be37d5ccb6c2cf61f52b224dca493c.zip chromium_src-ad8e04ac88be37d5ccb6c2cf61f52b224dca493c.tar.gz chromium_src-ad8e04ac88be37d5ccb6c2cf61f52b224dca493c.tar.bz2 |
Convert implicit scoped_refptr constructor calls to explicit ones, part 1
This CL was created automatically by this clang rewriter: http://codereview.appspot.com/2776043/ . I manually fixed a few rough spots of the rewriter output (doh1-3) and fixed all presubmit errors.
BUG=28083
TEST=None
Review URL: http://codereview.chromium.org/4192012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64573 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/base/video_frame.cc')
-rw-r--r-- | media/base/video_frame.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/media/base/video_frame.cc b/media/base/video_frame.cc index 57a4d0d..332c3c5 100644 --- a/media/base/video_frame.cc +++ b/media/base/video_frame.cc @@ -39,8 +39,8 @@ void VideoFrame::CreateFrame(VideoFrame::Format format, DCHECK(width * height < 100000000); DCHECK(frame_out); bool alloc_worked = false; - scoped_refptr<VideoFrame> frame = - new VideoFrame(VideoFrame::TYPE_SYSTEM_MEMORY, format, width, height); + scoped_refptr<VideoFrame> frame( + new VideoFrame(VideoFrame::TYPE_SYSTEM_MEMORY, format, width, height)); if (frame) { frame->SetTimestamp(timestamp); frame->SetDuration(duration); @@ -85,8 +85,8 @@ void VideoFrame::CreateFrameExternal(SurfaceType type, void* private_buffer, scoped_refptr<VideoFrame>* frame_out) { DCHECK(frame_out); - scoped_refptr<VideoFrame> frame = - new VideoFrame(type, format, width, height); + scoped_refptr<VideoFrame> frame( + new VideoFrame(type, format, width, height)); if (frame) { frame->SetTimestamp(timestamp); frame->SetDuration(duration); @@ -108,8 +108,8 @@ void VideoFrame::CreateFrameGlTexture(Format format, GlTexture const textures[kMaxPlanes], scoped_refptr<VideoFrame>* frame_out) { DCHECK(frame_out); - scoped_refptr<VideoFrame> frame = - new VideoFrame(TYPE_GL_TEXTURE, format, width, height); + scoped_refptr<VideoFrame> frame( + new VideoFrame(TYPE_GL_TEXTURE, format, width, height)); if (frame) { frame->external_memory_ = true; frame->planes_ = GetNumberOfPlanes(format); |