| Index: mojo/edk/system/ipc_support_unittest.cc
|
| diff --git a/mojo/edk/system/ipc_support_unittest.cc b/mojo/edk/system/ipc_support_unittest.cc
|
| index 986b4db0eb82b79eeb28915ad3693e8b444dc62f..95d57d5cc93198f4b6ba2ba8dbb8fa2aeb266795 100644
|
| --- a/mojo/edk/system/ipc_support_unittest.cc
|
| +++ b/mojo/edk/system/ipc_support_unittest.cc
|
| @@ -99,10 +99,9 @@ RefPtr<MessagePipeDispatcher> SendMessagePipeDispatcher(
|
| MOJO_RESULT_OK);
|
|
|
| // Write a message with just |mp_handle_to_send| through the write end.
|
| - DispatcherTransport transport(
|
| - test::HandleTryStartTransport(mp_handle_to_send));
|
| + HandleTransport transport(test::HandleTryStartTransport(mp_handle_to_send));
|
| CHECK(transport.is_valid());
|
| - std::vector<DispatcherTransport> transports;
|
| + std::vector<HandleTransport> transports;
|
| transports.push_back(transport);
|
| CHECK_EQ(write_mp->WriteMessage(NullUserPointer(), 0, &transports,
|
| MOJO_WRITE_MESSAGE_FLAG_NONE),
|
|
|