| 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 f0d949521cb866a714218aca682aab3e3704a025..18bdf5dbec98d550324b26e08ccd6dcf7cecb569 100644
|
| --- a/mojo/edk/system/message_pipe_test_utils.cc
|
| +++ b/mojo/edk/system/message_pipe_test_utils.cc
|
| @@ -47,7 +47,6 @@ void ChannelThread::Start(embedder::ScopedPlatformHandle platform_handle,
|
| RefPtr<ChannelEndpoint>&& channel_endpoint) {
|
| test_io_thread_.Start();
|
| test_io_thread_.PostTaskAndWait(
|
| - FROM_HERE,
|
| base::Bind(&ChannelThread::InitChannelOnIOThread, base::Unretained(this),
|
| base::Passed(&platform_handle),
|
| base::Passed(&channel_endpoint)));
|
| @@ -61,9 +60,8 @@ void ChannelThread::Stop() {
|
| while (!channel_->IsWriteBufferEmpty())
|
| test::Sleep(test::DeadlineFromMilliseconds(20));
|
|
|
| - test_io_thread_.PostTaskAndWait(
|
| - FROM_HERE, base::Bind(&ChannelThread::ShutdownChannelOnIOThread,
|
| - base::Unretained(this)));
|
| + test_io_thread_.PostTaskAndWait(base::Bind(
|
| + &ChannelThread::ShutdownChannelOnIOThread, base::Unretained(this)));
|
| }
|
| test_io_thread_.Stop();
|
| }
|
|
|