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

Unified Diff: webrtc/pc/quicdatachannel.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/quicdatachannel.cc
diff --git a/webrtc/pc/quicdatachannel.cc b/webrtc/pc/quicdatachannel.cc
index 8907ce767f78216930b128b155bd432237df92c3..c091651802893897dc7886c72391e24ce02961bb 100644
--- a/webrtc/pc/quicdatachannel.cc
+++ b/webrtc/pc/quicdatachannel.cc
@@ -225,7 +225,7 @@ bool QuicDataChannel::SetTransportChannel(
RTC_DCHECK(signaling_thread_->IsCurrent());
if (!channel) {
- LOG(LS_ERROR) << "|channel| is NULL. Cannot set transport channel.";
+ LOG(LS_ERROR) << "|channel| is null. Cannot set transport channel.";
return false;
}
if (quic_transport_channel_) {

Powered by Google App Engine
This is Rietveld 408576698