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

Unified Diff: webrtc/base/testclient_unittest.cc

Issue 2718663005: Replace NULL with nullptr or null in webrtc/base/. (Closed)
Patch Set: Fixing Windows and formatting issues. Created 3 years, 10 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
« no previous file with comments | « webrtc/base/testclient.cc ('k') | webrtc/base/testechoserver.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/testclient_unittest.cc
diff --git a/webrtc/base/testclient_unittest.cc b/webrtc/base/testclient_unittest.cc
index bdd06b329a9f594dce57c8194297437c587aa466..55078134c3a2b4ad7bc1fb5b873029ae97586b95 100644
--- a/webrtc/base/testclient_unittest.cc
+++ b/webrtc/base/testclient_unittest.cc
@@ -39,7 +39,7 @@ void TestTcpInternal(const SocketAddress& loopback) {
->CreateAsyncSocket(loopback.family(), SOCK_STREAM);
AsyncTCPSocket* tcp_socket = AsyncTCPSocket::Create(
socket, loopback, server.address());
- ASSERT_TRUE(tcp_socket != NULL);
+ ASSERT_TRUE(tcp_socket != nullptr);
TestClient client(tcp_socket);
SocketAddress addr = client.address(), from;
« no previous file with comments | « webrtc/base/testclient.cc ('k') | webrtc/base/testechoserver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698