| Index: ipc/mojo/ipc_mojo_bootstrap_unittest.cc
|
| diff --git a/ipc/mojo/ipc_mojo_bootstrap_unittest.cc b/ipc/mojo/ipc_mojo_bootstrap_unittest.cc
|
| index fbe0fa89589393c23049bf8e83c98b2540b2e6eb..65d216f82119da5d0db020e6f3db274bc463a7e7 100644
|
| --- a/ipc/mojo/ipc_mojo_bootstrap_unittest.cc
|
| +++ b/ipc/mojo/ipc_mojo_bootstrap_unittest.cc
|
| @@ -47,7 +47,7 @@ TEST_F(IPCMojoBootstrapTest, Connect) {
|
|
|
| TestingDelegate delegate;
|
| scoped_ptr<IPC::MojoBootstrap> bootstrap = IPC::MojoBootstrap::Create(
|
| - GetTestChannelHandle(), IPC::Channel::MODE_SERVER, &delegate);
|
| + GetTestChannelHandle(), IPC::Channel::MODE_SERVER, &delegate, nullptr);
|
|
|
| ASSERT_TRUE(bootstrap->Connect());
|
| #if defined(OS_POSIX)
|
| @@ -71,7 +71,8 @@ MULTIPROCESS_IPC_TEST_CLIENT_MAIN(IPCMojoBootstrapTestClient) {
|
| scoped_ptr<IPC::MojoBootstrap> bootstrap = IPC::MojoBootstrap::Create(
|
| IPCTestBase::GetChannelName("IPCMojoBootstrapTestClient"),
|
| IPC::Channel::MODE_CLIENT,
|
| - &delegate);
|
| + &delegate,
|
| + nullptr);
|
|
|
| bootstrap->Connect();
|
|
|
|
|