| 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 b5512a4b354127777507c82d327de015a88cd5c2..75536cbacc92d1784a60e37d01792b1d5c19ecbc 100644
|
| --- a/content/renderer/media/android/stream_texture_factory_synchronous_impl.cc
|
| +++ b/content/renderer/media/android/stream_texture_factory_synchronous_impl.cc
|
| @@ -136,16 +136,16 @@ void StreamTextureProxyImpl::OnFrameAvailable() {
|
| scoped_refptr<StreamTextureFactorySynchronousImpl>
|
| StreamTextureFactorySynchronousImpl::Create(
|
| const CreateContextProviderCallback& try_create_callback,
|
| - int view_id) {
|
| - return new StreamTextureFactorySynchronousImpl(try_create_callback, view_id);
|
| + int frame_id) {
|
| + return new StreamTextureFactorySynchronousImpl(try_create_callback, frame_id);
|
| }
|
|
|
| StreamTextureFactorySynchronousImpl::StreamTextureFactorySynchronousImpl(
|
| const CreateContextProviderCallback& try_create_callback,
|
| - int view_id)
|
| + int frame_id)
|
| : create_context_provider_callback_(try_create_callback),
|
| context_provider_(create_context_provider_callback_.Run()),
|
| - view_id_(view_id) {}
|
| + frame_id_(frame_id) {}
|
|
|
| StreamTextureFactorySynchronousImpl::~StreamTextureFactorySynchronousImpl() {}
|
|
|
| @@ -167,7 +167,7 @@ void StreamTextureFactorySynchronousImpl::EstablishPeer(int32 stream_id,
|
| SurfaceTexturePeer::GetInstance()->EstablishSurfaceTexturePeer(
|
| base::Process::Current().handle(),
|
| surface_texture,
|
| - view_id_,
|
| + frame_id_,
|
| player_id);
|
| }
|
| }
|
|
|