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

Unified Diff: net/socket/tcp_client_socket_unittest.cc

Issue 266243004: Clang format slam. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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
Index: net/socket/tcp_client_socket_unittest.cc
diff --git a/net/socket/tcp_client_socket_unittest.cc b/net/socket/tcp_client_socket_unittest.cc
index ce0c53559f862a50d0f5562c0759defa309a878f..ecd6b34ab2c9f2139c4d35cc97bbb41669ebb4d2 100644
--- a/net/socket/tcp_client_socket_unittest.cc
+++ b/net/socket/tcp_client_socket_unittest.cc
@@ -63,7 +63,8 @@ TEST(TCPClientSocketTest, BindLoopbackToExternal) {
IPAddressNumber external_ip;
ASSERT_TRUE(ParseIPLiteralToNumber("72.14.213.105", &external_ip));
TCPClientSocket socket(AddressList::CreateFromIPAddress(external_ip, 80),
- NULL, NetLog::Source());
+ NULL,
+ NetLog::Source());
IPAddressNumber lo_address;
ASSERT_TRUE(ParseIPLiteralToNumber("127.0.0.1", &lo_address));
@@ -88,7 +89,7 @@ TEST(TCPClientSocketTest, BindLoopbackToIPv6) {
int listen_result = server.Listen(IPEndPoint(ipv6_lo_ip, 0), 1);
if (listen_result != OK) {
LOG(ERROR) << "Failed to listen on ::1 - probably because IPv6 is disabled."
- " Skipping the test";
+ " Skipping the test";
return;
}

Powered by Google App Engine
This is Rietveld 408576698