Index: mojo/edk/system/channel_unittest.cc |
diff --git a/mojo/edk/system/channel_unittest.cc b/mojo/edk/system/channel_unittest.cc |
index 68b1315a2b522a67bc1b0d9f78a2d9b4ffc574cd..f6cf8967919741f1422f64f214d8d07543fafe4d 100644 |
--- a/mojo/edk/system/channel_unittest.cc |
+++ b/mojo/edk/system/channel_unittest.cc |
@@ -104,8 +104,9 @@ |
EXPECT_EQ(TRISTATE_TRUE, init_result()); |
io_thread()->PostTaskAndWait( |
- FROM_HERE, base::Bind(&ChannelTest::ShutdownChannelOnIOThread, |
- base::Unretained(this))); |
+ FROM_HERE, |
+ base::Bind(&ChannelTest::ShutdownChannelOnIOThread, |
+ base::Unretained(this))); |
// Okay to destroy |Channel| on not-the-I/O-thread. |
EXPECT_TRUE(channel()->HasOneRef()); |
@@ -202,8 +203,9 @@ |
channel()->AttachAndRunEndpoint(channel_endpoint, true); |
io_thread()->PostTaskAndWait( |
- FROM_HERE, base::Bind(&ChannelTest::ShutdownChannelOnIOThread, |
- base::Unretained(this))); |
+ FROM_HERE, |
+ base::Bind(&ChannelTest::ShutdownChannelOnIOThread, |
+ base::Unretained(this))); |
EXPECT_TRUE(channel()->HasOneRef()); |
} |
@@ -271,8 +273,9 @@ |
channel()->AttachAndRunEndpoint(channel_endpoint, true); |
io_thread()->PostTaskAndWait( |
- FROM_HERE, base::Bind(&ChannelTest::ShutdownChannelOnIOThread, |
- base::Unretained(this))); |
+ FROM_HERE, |
+ base::Bind(&ChannelTest::ShutdownChannelOnIOThread, |
+ base::Unretained(this))); |
Waiter waiter; |
waiter.Init(); |