Chromium Code Reviews| Index: ipc/ipc_channel_proxy.cc |
| diff --git a/ipc/ipc_channel_proxy.cc b/ipc/ipc_channel_proxy.cc |
| index 84f87fc873365477af257b9dc5b64f2045417fca..755bb4787993efb05183f6eba501241cff741c31 100644 |
| --- a/ipc/ipc_channel_proxy.cc |
| +++ b/ipc/ipc_channel_proxy.cc |
| @@ -420,7 +420,7 @@ void ChannelProxy::Init(scoped_ptr<ChannelFactory> factory, |
| } else { |
| context_->ipc_task_runner()->PostTask( |
| FROM_HERE, base::Bind(&Context::CreateChannel, |
| - context_.get(), Passed(factory.Pass()))); |
| + context_.get(), base::Passed(&factory))); |
|
dcheng
2015/11/11 16:18:34
I didn't investigate why this triggers a compile e
|
| } |
| // complete initialization on the background thread |