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

Unified Diff: content/public/gpu/gpu_video_decode_accelerator_factory.cc

Issue 1874903002: Convert //content from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix indent 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
Index: content/public/gpu/gpu_video_decode_accelerator_factory.cc
diff --git a/content/public/gpu/gpu_video_decode_accelerator_factory.cc b/content/public/gpu/gpu_video_decode_accelerator_factory.cc
index 6d6e4c3497a0cb8414eb0402ff95b95492618151..26cf35746ca22bb9b4001c22819d10d17d4909ab 100644
--- a/content/public/gpu/gpu_video_decode_accelerator_factory.cc
+++ b/content/public/gpu/gpu_video_decode_accelerator_factory.cc
@@ -4,6 +4,7 @@
#include "content/public/gpu/gpu_video_decode_accelerator_factory.h"
+#include "base/memory/ptr_util.h"
#include "content/common/gpu/media/gpu_video_decode_accelerator_factory_impl.h"
#include "content/gpu/gpu_child_thread.h"
@@ -12,7 +13,7 @@ namespace content {
GpuVideoDecodeAcceleratorFactory::~GpuVideoDecodeAcceleratorFactory() {}
// static
-scoped_ptr<GpuVideoDecodeAcceleratorFactory>
+std::unique_ptr<GpuVideoDecodeAcceleratorFactory>
GpuVideoDecodeAcceleratorFactory::Create(
const GetGLContextCallback& get_gl_context_cb,
const MakeGLContextCurrentCallback& make_context_current_cb,
@@ -22,12 +23,12 @@ GpuVideoDecodeAcceleratorFactory::Create(
if (!gvdafactory_impl)
return nullptr;
- return make_scoped_ptr(
+ return base::WrapUnique(
new GpuVideoDecodeAcceleratorFactory(std::move(gvdafactory_impl)));
}
// static
-scoped_ptr<GpuVideoDecodeAcceleratorFactory>
+std::unique_ptr<GpuVideoDecodeAcceleratorFactory>
GpuVideoDecodeAcceleratorFactory::CreateWithGLES2Decoder(
const GetGLContextCallback& get_gl_context_cb,
const MakeGLContextCurrentCallback& make_context_current_cb,
@@ -40,7 +41,7 @@ GpuVideoDecodeAcceleratorFactory::CreateWithGLES2Decoder(
if (!gvdafactory_impl)
return nullptr;
- return make_scoped_ptr(
+ return base::WrapUnique(
new GpuVideoDecodeAcceleratorFactory(std::move(gvdafactory_impl)));
}
@@ -53,7 +54,7 @@ GpuVideoDecodeAcceleratorFactory::GetDecoderCapabilities() {
gpu_preferences);
}
-scoped_ptr<media::VideoDecodeAccelerator>
+std::unique_ptr<media::VideoDecodeAccelerator>
GpuVideoDecodeAcceleratorFactory::CreateVDA(
media::VideoDecodeAccelerator::Client* client,
const media::VideoDecodeAccelerator::Config& config) {
@@ -66,7 +67,7 @@ GpuVideoDecodeAcceleratorFactory::CreateVDA(
}
GpuVideoDecodeAcceleratorFactory::GpuVideoDecodeAcceleratorFactory(
- scoped_ptr<GpuVideoDecodeAcceleratorFactoryImpl> gvdafactory_impl)
+ std::unique_ptr<GpuVideoDecodeAcceleratorFactoryImpl> gvdafactory_impl)
: gvdafactory_impl_(std::move(gvdafactory_impl)) {}
} // namespace content
« no previous file with comments | « content/public/gpu/gpu_video_decode_accelerator_factory.h ('k') | content/public/renderer/content_renderer_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698