| Index: mojo/edk/system/message_pipe_test_utils.cc
|
| diff --git a/mojo/edk/system/message_pipe_test_utils.cc b/mojo/edk/system/message_pipe_test_utils.cc
|
| index 8f217cad5a50efd92c1bff79bb4922a92e7f75d3..e5df26da48d6d939c142872dbf09d008af5f3f17 100644
|
| --- a/mojo/edk/system/message_pipe_test_utils.cc
|
| +++ b/mojo/edk/system/message_pipe_test_utils.cc
|
| @@ -46,10 +46,8 @@ void ChannelThread::Start(embedder::ScopedPlatformHandle platform_handle,
|
| test_io_thread_.Start();
|
| test_io_thread_.PostTaskAndWait(
|
| FROM_HERE,
|
| - base::Bind(&ChannelThread::InitChannelOnIOThread,
|
| - base::Unretained(this),
|
| - base::Passed(&platform_handle),
|
| - channel_endpoint));
|
| + base::Bind(&ChannelThread::InitChannelOnIOThread, base::Unretained(this),
|
| + base::Passed(&platform_handle), channel_endpoint));
|
| }
|
|
|
| void ChannelThread::Stop() {
|
| @@ -61,9 +59,8 @@ void ChannelThread::Stop() {
|
| base::PlatformThread::Sleep(base::TimeDelta::FromMilliseconds(20));
|
|
|
| test_io_thread_.PostTaskAndWait(
|
| - FROM_HERE,
|
| - base::Bind(&ChannelThread::ShutdownChannelOnIOThread,
|
| - base::Unretained(this)));
|
| + FROM_HERE, base::Bind(&ChannelThread::ShutdownChannelOnIOThread,
|
| + base::Unretained(this)));
|
| }
|
| test_io_thread_.Stop();
|
| }
|
|
|