diff options
Diffstat (limited to 'ipc/mojo')
-rw-r--r-- | ipc/mojo/ipc_channel_mojo.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ipc/mojo/ipc_channel_mojo.cc b/ipc/mojo/ipc_channel_mojo.cc index b7192da..cff2789 100644 --- a/ipc/mojo/ipc_channel_mojo.cc +++ b/ipc/mojo/ipc_channel_mojo.cc @@ -156,7 +156,9 @@ void ServerChannelMojo::OnPipeAvailable( return; } - client_channel_.Bind(CreateMessagingPipe(handle.Pass())); + client_channel_.Bind( + mojo::InterfacePtrInfo<ClientChannel>( + CreateMessagingPipe(handle.Pass()), 0u)); client_channel_.set_error_handler(this); client_channel_->Init( peer.Pass(), |