Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1793)

Unified Diff: mojo/edk/system/endpoint_relayer_unittest.cc

Issue 1408133004: EDK: Remove tracked_objects::Location argument in TestIOThread methods (etc.). (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/edk/system/data_pipe_impl_unittest.cc ('k') | mojo/edk/system/ipc_support_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
}
« no previous file with comments | « mojo/edk/system/data_pipe_impl_unittest.cc ('k') | mojo/edk/system/ipc_support_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698