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 60c5bbe40b3cb16ce4904017d2a7dae1996c650c..ed02111d5da730e87b85e040df76077183754f39 100644 |
--- a/content/common/gpu/client/gpu_channel_host.cc |
+++ b/content/common/gpu/client/gpu_channel_host.cc |
@@ -73,9 +73,10 @@ void GpuChannelHost::Connect(const IPC::ChannelHandle& channel_handle, |
// since we need to filter everything to route it to the right thread. |
scoped_refptr<base::SingleThreadTaskRunner> io_task_runner = |
factory_->GetIOThreadTaskRunner(); |
- channel_ = |
- IPC::SyncChannel::Create(channel_handle, IPC::Channel::MODE_CLIENT, NULL, |
- io_task_runner.get(), true, shutdown_event); |
+ // TODO(erikchen): fixme |
+ channel_ = IPC::SyncChannel::Create( |
+ channel_handle, IPC::Channel::MODE_CLIENT, NULL, io_task_runner.get(), |
+ true, shutdown_event, factory_->GetAttachmentBroker()); |
sync_filter_ = new IPC::SyncMessageFilter(shutdown_event); |