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

Unified Diff: content/browser/renderer_host/p2p/socket_host_tcp_unittest.cc

Issue 264793017: Implements RTP header dumping. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix leak 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: 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_);

Powered by Google App Engine
This is Rietveld 408576698