diff options
Diffstat (limited to 'chrome/gpu/gpu_video_decoder.cc')
-rw-r--r-- | chrome/gpu/gpu_video_decoder.cc | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/chrome/gpu/gpu_video_decoder.cc b/chrome/gpu/gpu_video_decoder.cc index bf5881ed..91758e0 100644 --- a/chrome/gpu/gpu_video_decoder.cc +++ b/chrome/gpu/gpu_video_decoder.cc @@ -343,11 +343,7 @@ void GpuVideoDecoder::SendFillBufferDone( void GpuVideoDecoder::SendAllocateVideoFrames( int n, size_t width, size_t height, media::VideoFrame::Format format) { - if (!channel_->Send( - new GpuVideoDecoderHostMsg_AllocateVideoFrames( - route_id(), n, width, height, format))) { - LOG(ERROR) << "GpuVideoDecoderMsg_AllocateVideoFrames failed"; - } + // TODO(hclam): Actually send the message. } void GpuVideoDecoder::SendReleaseAllVideoFrames() { |