| Index: content/renderer/media/android/stream_texture_factory_impl.h
|
| diff --git a/content/renderer/media/android/stream_texture_factory_impl.h b/content/renderer/media/android/stream_texture_factory_impl.h
|
| index 648f70fbcedac0b01f9311d94cd6631fc3b900a3..e07122d123767343840fe58c754ba220c885faa2 100644
|
| --- a/content/renderer/media/android/stream_texture_factory_impl.h
|
| +++ b/content/renderer/media/android/stream_texture_factory_impl.h
|
| @@ -18,18 +18,18 @@ namespace gpu {
|
| namespace gles2 {
|
| class GLES2Interface;
|
| } // namespace gles2
|
| +class GpuChannelHost;
|
| } // namespace gpu
|
|
|
| namespace content {
|
|
|
| class ContextProviderCommandBuffer;
|
| -class GpuChannelHost;
|
|
|
| class StreamTextureFactoryImpl : public StreamTextureFactory {
|
| public:
|
| static scoped_refptr<StreamTextureFactoryImpl> Create(
|
| const scoped_refptr<ContextProviderCommandBuffer>& context_provider,
|
| - GpuChannelHost* channel);
|
| + gpu::GpuChannelHost* channel);
|
|
|
| // StreamTextureFactory implementation.
|
| StreamTextureProxy* CreateProxy() override;
|
| @@ -46,11 +46,11 @@ class StreamTextureFactoryImpl : public StreamTextureFactory {
|
| friend class base::RefCounted<StreamTextureFactoryImpl>;
|
| StreamTextureFactoryImpl(
|
| const scoped_refptr<ContextProviderCommandBuffer>& context_provider,
|
| - GpuChannelHost* channel);
|
| + gpu::GpuChannelHost* channel);
|
| ~StreamTextureFactoryImpl() override;
|
|
|
| - scoped_refptr<content::ContextProviderCommandBuffer> context_provider_;
|
| - scoped_refptr<GpuChannelHost> channel_;
|
| + scoped_refptr<ContextProviderCommandBuffer> context_provider_;
|
| + scoped_refptr<gpu::GpuChannelHost> channel_;
|
|
|
| DISALLOW_IMPLICIT_CONSTRUCTORS(StreamTextureFactoryImpl);
|
| };
|
|
|