| 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 ea740e2441aaa3b36d480ffa65a3204dbd203f88..6a1beb6f1dcc29ea88665e1a536057f0e2155451 100644
|
| --- a/content/public/gpu/gpu_video_decode_accelerator_factory.h
|
| +++ b/content/public/gpu/gpu_video_decode_accelerator_factory.h
|
| @@ -27,9 +27,11 @@ class GLES2Decoder;
|
| }
|
| }
|
|
|
| -namespace content {
|
| -
|
| +namespace media {
|
| class GpuVideoDecodeAcceleratorFactoryImpl;
|
| +}
|
| +
|
| +namespace content {
|
|
|
| // This factory allows creation of VideoDecodeAccelerator implementations,
|
| // providing the most applicable VDA for current platform and given
|
| @@ -90,12 +92,14 @@ class CONTENT_EXPORT GpuVideoDecodeAcceleratorFactory {
|
|
|
| private:
|
| // TODO(posciak): This is temporary and will not be needed once
|
| - // GpuVideoDecodeAcceleratorFactoryImpl implements
|
| + // media::GpuVideoDecodeAcceleratorFactoryImpl implements
|
| // GpuVideoDecodeAcceleratorFactory, see crbug.com/597150 and related.
|
| GpuVideoDecodeAcceleratorFactory(
|
| - std::unique_ptr<GpuVideoDecodeAcceleratorFactoryImpl> gvdafactory_impl);
|
| + std::unique_ptr<media::GpuVideoDecodeAcceleratorFactoryImpl>
|
| + gvdafactory_impl);
|
|
|
| - std::unique_ptr<GpuVideoDecodeAcceleratorFactoryImpl> gvdafactory_impl_;
|
| + std::unique_ptr<media::GpuVideoDecodeAcceleratorFactoryImpl>
|
| + gvdafactory_impl_;
|
| };
|
|
|
| } // namespace content
|
|
|