| Index: content/renderer/media/stream_texture_factory_impl_android.h
|
| diff --git a/content/renderer/media/stream_texture_factory_impl_android.h b/content/renderer/media/stream_texture_factory_impl_android.h
|
| index eb27e5712858905426b8e881ef180355c1a42b71..311d9ece71730e65b0b5f48b7cc79a142ea10fdc 100644
|
| --- a/content/renderer/media/stream_texture_factory_impl_android.h
|
| +++ b/content/renderer/media/stream_texture_factory_impl_android.h
|
| @@ -30,8 +30,16 @@ class StreamTextureFactoryImpl
|
|
|
| virtual void EstablishPeer(int stream_id, int player_id) OVERRIDE;
|
|
|
| - virtual unsigned CreateStreamTexture(unsigned* texture_id) OVERRIDE;
|
| - virtual void DestroyStreamTexture(unsigned texture_id) OVERRIDE;
|
| + virtual unsigned CreateStreamTexture(
|
| + unsigned texture_target,
|
| + unsigned* texture_id,
|
| + gpu::Mailbox* texture_mailbox,
|
| + unsigned* texture_mailbox_sync_point) OVERRIDE;
|
| + virtual void DestroyStreamTexture(
|
| + unsigned texture_target,
|
| + unsigned texture_id,
|
| + const gpu::Mailbox& texture_mailbox,
|
| + unsigned texture_mailbox_sync_point) OVERRIDE;
|
|
|
| private:
|
| WebKit::WebGraphicsContext3D* context_;
|
|
|