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

Unified Diff: webrtc/base/asyncsocket.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/asyncsocket.h ('k') | webrtc/base/asynctcpsocket.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/asyncsocket.cc
diff --git a/webrtc/base/asyncsocket.cc b/webrtc/base/asyncsocket.cc
index 873badc81812b493f79449d9500d50493fd89aa9..6c41596499f64e76b62699b8eb12518a79e9a208 100644
--- a/webrtc/base/asyncsocket.cc
+++ b/webrtc/base/asyncsocket.cc
@@ -19,7 +19,7 @@ AsyncSocket::AsyncSocket() {
AsyncSocket::~AsyncSocket() {
}
-AsyncSocketAdapter::AsyncSocketAdapter(AsyncSocket* socket) : socket_(NULL) {
+AsyncSocketAdapter::AsyncSocketAdapter(AsyncSocket* socket) : socket_(nullptr) {
Attach(socket);
}
« no previous file with comments | « webrtc/base/asyncsocket.h ('k') | webrtc/base/asynctcpsocket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698