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

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

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
« no previous file with comments | « content/public/common/sandbox_init.h ('k') | content/public/gpu/gpu_video_decode_accelerator_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/gpu/gpu_video_decode_accelerator_factory.h
diff --git a/content/public/gpu/gpu_video_decode_accelerator_factory.h b/content/public/gpu/gpu_video_decode_accelerator_factory.h
index fe449546791880276d31a96cd7f887c3065b40bc..313306bdd36af0d05b4f74cf2af26e47130afa07 100644
--- a/content/public/gpu/gpu_video_decode_accelerator_factory.h
+++ b/content/public/gpu/gpu_video_decode_accelerator_factory.h
@@ -58,12 +58,13 @@ class CONTENT_EXPORT GpuVideoDecodeAcceleratorFactory {
base::Callback<base::WeakPtr<gpu::gles2::GLES2Decoder>(void)>;
// Create a factory capable of producing VDA instances for current platform.
- static scoped_ptr<GpuVideoDecodeAcceleratorFactory> Create(
+ static std::unique_ptr<GpuVideoDecodeAcceleratorFactory> Create(
const GetGLContextCallback& get_gl_context_cb,
const MakeGLContextCurrentCallback& make_context_current_cb,
const BindGLImageCallback& bind_image_cb);
- static scoped_ptr<GpuVideoDecodeAcceleratorFactory> CreateWithGLES2Decoder(
+ static std::unique_ptr<GpuVideoDecodeAcceleratorFactory>
+ CreateWithGLES2Decoder(
const GetGLContextCallback& get_gl_context_cb,
const MakeGLContextCurrentCallback& make_context_current_cb,
const BindGLImageCallback& bind_image_cb,
@@ -74,7 +75,7 @@ class CONTENT_EXPORT GpuVideoDecodeAcceleratorFactory {
// Create a VDA for the current platform for |client| with the given |config|
// and for given |gpu_preferences|. Return nullptr on failure.
- virtual scoped_ptr<media::VideoDecodeAccelerator> CreateVDA(
+ virtual std::unique_ptr<media::VideoDecodeAccelerator> CreateVDA(
media::VideoDecodeAccelerator::Client* client,
const media::VideoDecodeAccelerator::Config& config);
@@ -83,9 +84,9 @@ class CONTENT_EXPORT GpuVideoDecodeAcceleratorFactory {
// GpuVideoDecodeAcceleratorFactoryImpl implements
// GpuVideoDecodeAcceleratorFactory, see crbug.com/597150 and related.
GpuVideoDecodeAcceleratorFactory(
- scoped_ptr<GpuVideoDecodeAcceleratorFactoryImpl> gvdafactory_impl);
+ std::unique_ptr<GpuVideoDecodeAcceleratorFactoryImpl> gvdafactory_impl);
- scoped_ptr<GpuVideoDecodeAcceleratorFactoryImpl> gvdafactory_impl_;
+ std::unique_ptr<GpuVideoDecodeAcceleratorFactoryImpl> gvdafactory_impl_;
};
} // namespace content
« no previous file with comments | « content/public/common/sandbox_init.h ('k') | content/public/gpu/gpu_video_decode_accelerator_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698