OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_RENDERER_MEDIA_ANDROID_STREAM_TEXTURE_FACTORY_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_ANDROID_STREAM_TEXTURE_FACTORY_IMPL_H_ |
6 #define CONTENT_RENDERER_MEDIA_ANDROID_STREAM_TEXTURE_FACTORY_IMPL_H_ | 6 #define CONTENT_RENDERER_MEDIA_ANDROID_STREAM_TEXTURE_FACTORY_IMPL_H_ |
7 | 7 |
8 #include "content/renderer/media/android/stream_texture_factory.h" | 8 #include "content/renderer/media/android/stream_texture_factory.h" |
9 | 9 |
10 namespace cc { | 10 namespace cc { |
(...skipping 11 matching lines...) Expand all Loading... |
22 class GpuChannelHost; | 22 class GpuChannelHost; |
23 | 23 |
24 class StreamTextureFactoryImpl : public StreamTextureFactory { | 24 class StreamTextureFactoryImpl : public StreamTextureFactory { |
25 public: | 25 public: |
26 static scoped_refptr<StreamTextureFactoryImpl> Create( | 26 static scoped_refptr<StreamTextureFactoryImpl> Create( |
27 const scoped_refptr<cc::ContextProvider>& context_provider, | 27 const scoped_refptr<cc::ContextProvider>& context_provider, |
28 GpuChannelHost* channel, | 28 GpuChannelHost* channel, |
29 int frame_id); | 29 int frame_id); |
30 | 30 |
31 // StreamTextureFactory implementation. | 31 // StreamTextureFactory implementation. |
32 virtual StreamTextureProxy* CreateProxy() override; | 32 StreamTextureProxy* CreateProxy() override; |
33 virtual void EstablishPeer(int32 stream_id, int player_id) override; | 33 void EstablishPeer(int32 stream_id, int player_id) override; |
34 virtual unsigned CreateStreamTexture(unsigned texture_target, | 34 unsigned CreateStreamTexture(unsigned texture_target, |
35 unsigned* texture_id, | 35 unsigned* texture_id, |
36 gpu::Mailbox* texture_mailbox) override; | 36 gpu::Mailbox* texture_mailbox) override; |
37 virtual void SetStreamTextureSize(int32 texture_id, | 37 void SetStreamTextureSize(int32 texture_id, const gfx::Size& size) override; |
38 const gfx::Size& size) override; | 38 gpu::gles2::GLES2Interface* ContextGL() override; |
39 virtual gpu::gles2::GLES2Interface* ContextGL() override; | 39 void AddObserver(StreamTextureFactoryContextObserver* obs) override; |
40 virtual void AddObserver(StreamTextureFactoryContextObserver* obs) override; | 40 void RemoveObserver(StreamTextureFactoryContextObserver* obs) override; |
41 virtual void RemoveObserver( | |
42 StreamTextureFactoryContextObserver* obs) override; | |
43 | 41 |
44 private: | 42 private: |
45 friend class base::RefCounted<StreamTextureFactoryImpl>; | 43 friend class base::RefCounted<StreamTextureFactoryImpl>; |
46 StreamTextureFactoryImpl( | 44 StreamTextureFactoryImpl( |
47 const scoped_refptr<cc::ContextProvider>& context_provider, | 45 const scoped_refptr<cc::ContextProvider>& context_provider, |
48 GpuChannelHost* channel, | 46 GpuChannelHost* channel, |
49 int frame_id); | 47 int frame_id); |
50 virtual ~StreamTextureFactoryImpl(); | 48 ~StreamTextureFactoryImpl() override; |
51 | 49 |
52 scoped_refptr<cc::ContextProvider> context_provider_; | 50 scoped_refptr<cc::ContextProvider> context_provider_; |
53 scoped_refptr<GpuChannelHost> channel_; | 51 scoped_refptr<GpuChannelHost> channel_; |
54 int frame_id_; | 52 int frame_id_; |
55 | 53 |
56 DISALLOW_IMPLICIT_CONSTRUCTORS(StreamTextureFactoryImpl); | 54 DISALLOW_IMPLICIT_CONSTRUCTORS(StreamTextureFactoryImpl); |
57 }; | 55 }; |
58 | 56 |
59 } // namespace content | 57 } // namespace content |
60 | 58 |
61 #endif // CONTENT_RENDERER_MEDIA_ANDROID_STREAM_TEXTURE_FACTORY_IMPL_H_ | 59 #endif // CONTENT_RENDERER_MEDIA_ANDROID_STREAM_TEXTURE_FACTORY_IMPL_H_ |
OLD | NEW |