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

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

Issue 2249473002: Remove use of stl_util's STLDeleteContainerPairSecondPointers from content/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 4 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 7174fb1ac50a42da92d1df01674a14c785224737..b018b2741ccfbf5c50227f3c0c2b92275b627b22 100644
--- a/content/browser/renderer_host/p2p/socket_host_tcp_unittest.cc
+++ b/content/browser/renderer_host/p2p/socket_host_tcp_unittest.cc
@@ -38,10 +38,10 @@ class P2PSocketHostTcpTestBase : public testing::Test {
if (socket_type_ == P2P_SOCKET_TCP_CLIENT) {
socket_host_.reset(
- new P2PSocketHostTcp(&sender_, 0, P2P_SOCKET_TCP_CLIENT, NULL));
+ new P2PSocketHostTcp(&sender_, 0, P2P_SOCKET_TCP_CLIENT, nullptr));
} else {
socket_host_.reset(new P2PSocketHostStunTcp(
- &sender_, 0, P2P_SOCKET_STUN_TCP_CLIENT, NULL));
+ &sender_, 0, P2P_SOCKET_STUN_TCP_CLIENT, nullptr));
}
socket_ = new FakeSocket(&sent_data_);

Powered by Google App Engine
This is Rietveld 408576698