| Index: mojo/edk/system/endpoint_relayer_unittest.cc
|
| diff --git a/mojo/edk/system/endpoint_relayer_unittest.cc b/mojo/edk/system/endpoint_relayer_unittest.cc
|
| index d88e3ec3ef0de503105f4c46b914783d8cdbbe89..1b8b4402961e7339ea19a93f4ba9c38d066dd60d 100644
|
| --- a/mojo/edk/system/endpoint_relayer_unittest.cc
|
| +++ b/mojo/edk/system/endpoint_relayer_unittest.cc
|
| @@ -29,9 +29,9 @@ class EndpointRelayerTest : public test::ChannelTestBase {
|
| test::ChannelTestBase::SetUp();
|
|
|
| PostMethodToIOThreadAndWait(
|
| - FROM_HERE, &EndpointRelayerTest::CreateAndInitChannelOnIOThread, 0);
|
| + &EndpointRelayerTest::CreateAndInitChannelOnIOThread, 0);
|
| PostMethodToIOThreadAndWait(
|
| - FROM_HERE, &EndpointRelayerTest::CreateAndInitChannelOnIOThread, 1);
|
| + &EndpointRelayerTest::CreateAndInitChannelOnIOThread, 1);
|
|
|
| // The set up:
|
| // * Across the pair of channels, we'll have a pair of connections (call
|
| @@ -62,10 +62,10 @@ class EndpointRelayerTest : public test::ChannelTestBase {
|
| }
|
|
|
| void TearDown() override {
|
| - PostMethodToIOThreadAndWait(
|
| - FROM_HERE, &EndpointRelayerTest::ShutdownChannelOnIOThread, 0);
|
| - PostMethodToIOThreadAndWait(
|
| - FROM_HERE, &EndpointRelayerTest::ShutdownChannelOnIOThread, 1);
|
| + PostMethodToIOThreadAndWait(&EndpointRelayerTest::ShutdownChannelOnIOThread,
|
| + 0);
|
| + PostMethodToIOThreadAndWait(&EndpointRelayerTest::ShutdownChannelOnIOThread,
|
| + 1);
|
|
|
| test::ChannelTestBase::TearDown();
|
| }
|
|
|