| Index: content/common/gpu/media/gpu_video_decode_accelerator.cc
|
| diff --git a/content/common/gpu/media/gpu_video_decode_accelerator.cc b/content/common/gpu/media/gpu_video_decode_accelerator.cc
|
| index 119ba68b5547bf8b65340f680011a7f7bab7dda6..0bcd54fde401c2ab8394bda8eb0dc3158260c0d2 100644
|
| --- a/content/common/gpu/media/gpu_video_decode_accelerator.cc
|
| +++ b/content/common/gpu/media/gpu_video_decode_accelerator.cc
|
| @@ -247,8 +247,7 @@ void GpuVideoDecodeAccelerator::OnAssignPictureBuffers(
|
| NotifyError(media::VideoDecodeAccelerator::INVALID_ARGUMENT);
|
| return;
|
| }
|
| - gpu::gles2::TextureManager::TextureInfo* info =
|
| - texture_manager->GetTextureInfo(texture_ids[i]);
|
| + gpu::gles2::Texture* info = texture_manager->GetTexture(texture_ids[i]);
|
| if (!info) {
|
| DLOG(FATAL) << "Failed to find texture id " << texture_ids[i];
|
| NotifyError(media::VideoDecodeAccelerator::INVALID_ARGUMENT);
|
|
|