| Index: content/common/gpu/client/gpu_channel_host.cc
|
| diff --git a/content/common/gpu/client/gpu_channel_host.cc b/content/common/gpu/client/gpu_channel_host.cc
|
| index 72e89910316edb0998f57fa555c53465215dfa01..b6002dafb0001b73379b08aabf17a499f8147961 100644
|
| --- a/content/common/gpu/client/gpu_channel_host.cc
|
| +++ b/content/common/gpu/client/gpu_channel_host.cc
|
| @@ -112,13 +112,13 @@ bool GpuChannelHost::Send(IPC::Message* msg) {
|
| if (!result)
|
| DVLOG(1) << "GpuChannelHost::Send failed: Channel::Send failed";
|
| return result;
|
| - } else if (base::MessageLoop::current()) {
|
| + } else {
|
| bool result = sync_filter_->Send(message.release());
|
| - if (!result)
|
| - DVLOG(1) << "GpuChannelHost::Send failed: SyncMessageFilter::Send failed";
|
| return result;
|
| }
|
|
|
| + LOG(ERROR) << "... GpuChannelHost::Send() failed!!!";
|
| +
|
| return false;
|
| }
|
|
|
|
|