| Index: content/renderer/media/android/stream_texture_factory_synchronous_impl.cc
|
| diff --git a/content/renderer/media/android/stream_texture_factory_synchronous_impl.cc b/content/renderer/media/android/stream_texture_factory_synchronous_impl.cc
|
| index 20c8ee7ae1ab6f16ec19b736b342b4d222f35803..cbcc54d13b66a3d8092686d2d353e972ad4df9ba 100644
|
| --- a/content/renderer/media/android/stream_texture_factory_synchronous_impl.cc
|
| +++ b/content/renderer/media/android/stream_texture_factory_synchronous_impl.cc
|
| @@ -182,4 +182,14 @@ gpu::gles2::GLES2Interface* StreamTextureFactorySynchronousImpl::ContextGL() {
|
| return context_provider_->ContextGL();
|
| }
|
|
|
| +void StreamTextureFactorySynchronousImpl::AddObserver(
|
| + StreamTextureFactoryContextObserver* obs) {
|
| + context_provider_->AddObserver(obs);
|
| +}
|
| +
|
| +void StreamTextureFactorySynchronousImpl::RemoveObserver(
|
| + StreamTextureFactoryContextObserver* obs) {
|
| + context_provider_->RemoveObserver(obs);
|
| +}
|
| +
|
| } // namespace content
|
|
|