| 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 0374879a39aa0404f2f92fc57ab938112365094d..c03371e81872515c6aec7415a07161f39e85b971 100644
|
| --- a/content/renderer/media/android/stream_texture_factory_impl.h
|
| +++ b/content/renderer/media/android/stream_texture_factory_impl.h
|
| @@ -19,12 +19,13 @@ class GLES2Interface;
|
|
|
| namespace content {
|
|
|
| +class ContextProviderCommandBuffer;
|
| class GpuChannelHost;
|
|
|
| class StreamTextureFactoryImpl : public StreamTextureFactory {
|
| public:
|
| static scoped_refptr<StreamTextureFactoryImpl> Create(
|
| - const scoped_refptr<cc::ContextProvider>& context_provider,
|
| + const scoped_refptr<ContextProviderCommandBuffer>& context_provider,
|
| GpuChannelHost* channel,
|
| int frame_id);
|
|
|
| @@ -42,12 +43,12 @@ class StreamTextureFactoryImpl : public StreamTextureFactory {
|
| private:
|
| friend class base::RefCounted<StreamTextureFactoryImpl>;
|
| StreamTextureFactoryImpl(
|
| - const scoped_refptr<cc::ContextProvider>& context_provider,
|
| + const scoped_refptr<ContextProviderCommandBuffer>& context_provider,
|
| GpuChannelHost* channel,
|
| int frame_id);
|
| ~StreamTextureFactoryImpl() override;
|
|
|
| - scoped_refptr<cc::ContextProvider> context_provider_;
|
| + scoped_refptr<content::ContextProviderCommandBuffer> context_provider_;
|
| scoped_refptr<GpuChannelHost> channel_;
|
| int frame_id_;
|
|
|
|
|