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

Unified Diff: mojo/edk/system/channel_endpoint_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/embedder/embedder_unittest.cc ('k') | mojo/edk/system/channel_test_base.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
}
« no previous file with comments | « mojo/edk/embedder/embedder_unittest.cc ('k') | mojo/edk/system/channel_test_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698