| Index: content/renderer/media/android/stream_texture_factory_synchronous_impl.h
|
| diff --git a/content/renderer/media/android/stream_texture_factory_synchronous_impl.h b/content/renderer/media/android/stream_texture_factory_synchronous_impl.h
|
| index 1e2db8a539cc6bb0906052071fb3f8cbf75b595b..8f1c3c5e5a844460a15a47170d6bf7e117f118bc 100644
|
| --- a/content/renderer/media/android/stream_texture_factory_synchronous_impl.h
|
| +++ b/content/renderer/media/android/stream_texture_factory_synchronous_impl.h
|
| @@ -28,7 +28,7 @@ class StreamTextureFactorySynchronousImpl : public StreamTextureFactory {
|
| class ContextProvider : public base::RefCountedThreadSafe<ContextProvider> {
|
| public:
|
| virtual scoped_refptr<gfx::SurfaceTexture> GetSurfaceTexture(
|
| - uint32 stream_id) = 0;
|
| + int32 stream_id) = 0;
|
|
|
| virtual gpu::gles2::GLES2Interface* ContextGL() = 0;
|
|
|
| @@ -49,10 +49,9 @@ class StreamTextureFactorySynchronousImpl : public StreamTextureFactory {
|
|
|
| StreamTextureProxy* CreateProxy() override;
|
| void EstablishPeer(int32 stream_id, int player_id) override;
|
| - unsigned CreateStreamTexture(unsigned texture_target,
|
| - unsigned* texture_id,
|
| - gpu::Mailbox* texture_mailbox) override;
|
| - void SetStreamTextureSize(int32 stream_id, const gfx::Size& size) override;
|
| + int32 CreateStreamTexture(unsigned texture_target,
|
| + unsigned* texture_id,
|
| + gpu::Mailbox* texture_mailbox) override;
|
| gpu::gles2::GLES2Interface* ContextGL() override;
|
| void AddObserver(StreamTextureFactoryContextObserver* obs) override;
|
| void RemoveObserver(StreamTextureFactoryContextObserver* obs) override;
|
|
|