Index: ipc/mojo/ipc_channel_mojo.h |
diff --git a/ipc/mojo/ipc_channel_mojo.h b/ipc/mojo/ipc_channel_mojo.h |
index 3a1d98a8a97445cb9c72c7455c18a6ce2c20386a..9f8daf7d0718cb4d10bcf6053550d568072a0711 100644 |
--- a/ipc/mojo/ipc_channel_mojo.h |
+++ b/ipc/mojo/ipc_channel_mojo.h |
@@ -74,7 +74,8 @@ class IPC_MOJO_EXPORT ChannelMojo |
scoped_refptr<base::TaskRunner> io_runner, |
const ChannelHandle& channel_handle, |
Mode mode, |
- Listener* listener); |
+ Listener* listener, |
+ AttachmentBroker* broker); |
// Create a factory object for ChannelMojo. |
// The factory is used to create Mojo-based ChannelProxy family. |
@@ -82,12 +83,14 @@ class IPC_MOJO_EXPORT ChannelMojo |
static scoped_ptr<ChannelFactory> CreateServerFactory( |
Delegate* delegate, |
scoped_refptr<base::TaskRunner> io_runner, |
- const ChannelHandle& channel_handle); |
+ const ChannelHandle& channel_handle, |
+ AttachmentBroker* broker); |
static scoped_ptr<ChannelFactory> CreateClientFactory( |
Delegate* delegate, |
scoped_refptr<base::TaskRunner> io_runner, |
- const ChannelHandle& channel_handle); |
+ const ChannelHandle& channel_handle, |
+ AttachmentBroker* broker); |
~ChannelMojo() override; |