| Index: content/common/gpu/client/gpu_video_decode_accelerator_host.cc
|
| diff --git a/content/common/gpu/client/gpu_video_decode_accelerator_host.cc b/content/common/gpu/client/gpu_video_decode_accelerator_host.cc
|
| index 6cd519b1ff418d3c55d0a2418d40c522aaa45c89..0ac5167a620c41c6686c784b4d511525aa9460d5 100644
|
| --- a/content/common/gpu/client/gpu_video_decode_accelerator_host.cc
|
| +++ b/content/common/gpu/client/gpu_video_decode_accelerator_host.cc
|
| @@ -30,8 +30,6 @@ GpuVideoDecodeAcceleratorHost::GpuVideoDecodeAcceleratorHost(
|
| DCHECK(client_);
|
| }
|
|
|
| -GpuVideoDecodeAcceleratorHost::~GpuVideoDecodeAcceleratorHost() {}
|
| -
|
| void GpuVideoDecodeAcceleratorHost::OnChannelError() {
|
| DLOG(ERROR) << "GpuVideoDecodeAcceleratorHost::OnChannelError()";
|
| OnErrorNotification(PLATFORM_FAILURE);
|
| @@ -126,6 +124,8 @@ void GpuVideoDecodeAcceleratorHost::Destroy() {
|
| Send(new AcceleratedVideoDecoderMsg_Destroy(decoder_route_id_));
|
| }
|
|
|
| +GpuVideoDecodeAcceleratorHost::~GpuVideoDecodeAcceleratorHost() {}
|
| +
|
| void GpuVideoDecodeAcceleratorHost::Send(IPC::Message* message) {
|
| // After OnChannelError is called, the client should no longer send
|
| // messages to the gpu channel through this object.
|
|
|