Index: ipc/ipc_channel_proxy.h |
diff --git a/ipc/ipc_channel_proxy.h b/ipc/ipc_channel_proxy.h |
index 5d38006b5d5854f5749c38e0ac956b5077046e26..5c4bd44c2fa6f3129d60baacf9ae238d82a588b4 100644 |
--- a/ipc/ipc_channel_proxy.h |
+++ b/ipc/ipc_channel_proxy.h |
@@ -86,7 +86,8 @@ class IPC_EXPORT ChannelProxy : public Sender, public base::NonThreadSafe { |
const IPC::ChannelHandle& channel_handle, |
Channel::Mode mode, |
Listener* listener, |
- const scoped_refptr<base::SingleThreadTaskRunner>& ipc_task_runner); |
+ const scoped_refptr<base::SingleThreadTaskRunner>& ipc_task_runner, |
+ AttachmentBroker* broker); |
static scoped_ptr<ChannelProxy> Create( |
scoped_ptr<ChannelFactory> factory, |
@@ -99,8 +100,10 @@ class IPC_EXPORT ChannelProxy : public Sender, public base::NonThreadSafe { |
// proxy that was not initialized in its constructor. If create_pipe_now is |
// true, the pipe is created synchronously. Otherwise it's created on the IO |
// thread. |
- void Init(const IPC::ChannelHandle& channel_handle, Channel::Mode mode, |
- bool create_pipe_now); |
+ void Init(const IPC::ChannelHandle& channel_handle, |
+ Channel::Mode mode, |
+ bool create_pipe_now, |
+ AttachmentBroker* broker); |
void Init(scoped_ptr<ChannelFactory> factory, bool create_pipe_now); |
// Close the IPC::Channel. This operation completes asynchronously, once the |