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..aa47e2fd677bad9d115abb27209433292689fe57 100644 |
--- a/content/common/gpu/client/gpu_channel_host.cc |
+++ b/content/common/gpu/client/gpu_channel_host.cc |
@@ -112,14 +112,10 @@ bool GpuChannelHost::Send(IPC::Message* msg) { |
if (!result) |
DVLOG(1) << "GpuChannelHost::Send failed: Channel::Send failed"; |
return result; |
- } else if (base::MessageLoop::current()) { |
- bool result = sync_filter_->Send(message.release()); |
- if (!result) |
- DVLOG(1) << "GpuChannelHost::Send failed: SyncMessageFilter::Send failed"; |
- return result; |
} |
- return false; |
+ bool result = sync_filter_->Send(message.release()); |
+ return result; |
} |
void GpuChannelHost::OrderingBarrier( |