| 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 8c6852888d8ede4f0ceff38d956054f92c22be7a..6b1706cdbb614fb320611d359ac5ceb45b6eb5f8 100644
|
| --- a/content/common/gpu/client/gpu_channel_host.cc
|
| +++ b/content/common/gpu/client/gpu_channel_host.cc
|
| @@ -79,9 +79,9 @@ 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, factory_->GetAttachmentBroker());
|
| + channel_ =
|
| + IPC::SyncChannel::Create(channel_handle, IPC::Channel::MODE_CLIENT, NULL,
|
| + io_task_runner.get(), true, shutdown_event);
|
|
|
| sync_filter_ = channel_->CreateSyncMessageFilter();
|
|
|
|
|