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

Unified Diff: webrtc/pc/peerconnectionfactory.cc

Issue 2685783014: Replace NULL with nullptr in all C++ files. (Closed)
Patch Set: Fixing android. 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
Index: webrtc/pc/peerconnectionfactory.cc
diff --git a/webrtc/pc/peerconnectionfactory.cc b/webrtc/pc/peerconnectionfactory.cc
index 4adee157587868a9d67bae44874048ddbe6c1e6a..db9c515dead564fc9412e5f0c71c4242450c319d 100644
--- a/webrtc/pc/peerconnectionfactory.cc
+++ b/webrtc/pc/peerconnectionfactory.cc
@@ -173,8 +173,8 @@ PeerConnectionFactory::PeerConnectionFactory(
RTC_DCHECK(worker_thread);
RTC_DCHECK(signaling_thread);
// TODO: Currently there is no way creating an external adm in
- // libjingle source tree. So we can 't currently assert if this is NULL.
- // RTC_DCHECK(default_adm != NULL);
+ // libjingle source tree. So we can 't currently assert if this is null.
+ // RTC_DCHECK(default_adm != null);
}
PeerConnectionFactory::~PeerConnectionFactory() {

Powered by Google App Engine
This is Rietveld 408576698