Index: content/browser/renderer_host/p2p/socket_host_tcp_unittest.cc |
diff --git a/content/browser/renderer_host/p2p/socket_host_tcp_unittest.cc b/content/browser/renderer_host/p2p/socket_host_tcp_unittest.cc |
index 9e068d0938201faf297378539ae7c757f0ab3212..24b77c3adbe1eb7802b7e59139d30ba6978db659 100644 |
--- a/content/browser/renderer_host/p2p/socket_host_tcp_unittest.cc |
+++ b/content/browser/renderer_host/p2p/socket_host_tcp_unittest.cc |
@@ -31,11 +31,11 @@ class P2PSocketHostTcpTestBase : public testing::Test { |
.WillOnce(DoAll(DeleteArg<0>(), Return(true))); |
if (socket_type_ == P2P_SOCKET_TCP_CLIENT) { |
- socket_host_.reset(new P2PSocketHostTcp( |
- &sender_, 0, P2P_SOCKET_TCP_CLIENT, NULL)); |
+ socket_host_.reset( |
+ new P2PSocketHostTcp(&sender_, 0, P2P_SOCKET_TCP_CLIENT, NULL)); |
} else { |
socket_host_.reset(new P2PSocketHostStunTcp( |
- &sender_, 0, P2P_SOCKET_STUN_TCP_CLIENT, NULL)); |
+ &sender_, 0, P2P_SOCKET_STUN_TCP_CLIENT, NULL)); |
} |
socket_ = new FakeSocket(&sent_data_); |