Index: mojo/edk/system/channel_endpoint_unittest.cc |
diff --git a/mojo/edk/system/channel_endpoint_unittest.cc b/mojo/edk/system/channel_endpoint_unittest.cc |
index e82a005284328cc1a8df6aaf5a8d3241649d2f5e..19cc237415ef68a2d13985b4cde1d728eddd603c 100644 |
--- a/mojo/edk/system/channel_endpoint_unittest.cc |
+++ b/mojo/edk/system/channel_endpoint_unittest.cc |
@@ -29,16 +29,16 @@ class ChannelEndpointTest : public test::ChannelTestBase { |
test::ChannelTestBase::SetUp(); |
PostMethodToIOThreadAndWait( |
- FROM_HERE, &ChannelEndpointTest::CreateAndInitChannelOnIOThread, 0); |
+ &ChannelEndpointTest::CreateAndInitChannelOnIOThread, 0); |
PostMethodToIOThreadAndWait( |
- FROM_HERE, &ChannelEndpointTest::CreateAndInitChannelOnIOThread, 1); |
+ &ChannelEndpointTest::CreateAndInitChannelOnIOThread, 1); |
} |
void TearDown() override { |
- PostMethodToIOThreadAndWait( |
- FROM_HERE, &ChannelEndpointTest::ShutdownChannelOnIOThread, 0); |
- PostMethodToIOThreadAndWait( |
- FROM_HERE, &ChannelEndpointTest::ShutdownChannelOnIOThread, 1); |
+ PostMethodToIOThreadAndWait(&ChannelEndpointTest::ShutdownChannelOnIOThread, |
+ 0); |
+ PostMethodToIOThreadAndWait(&ChannelEndpointTest::ShutdownChannelOnIOThread, |
+ 1); |
test::ChannelTestBase::TearDown(); |
} |