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

Unified Diff: webrtc/call/audio_send_stream.cc

Issue 2719733002: Replace NULL with nullptr or null in webrtc/audio/ and common_audio/. (Closed)
Patch Set: Fixing test. 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/audio/audio_send_stream_unittest.cc ('k') | webrtc/common_audio/fir_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/call/audio_send_stream.cc
diff --git a/webrtc/call/audio_send_stream.cc b/webrtc/call/audio_send_stream.cc
index 8b6dd9e416fc025f619aefb139e9732f334e2cb5..6091462470dba0786850e12b889577653706b397 100644
--- a/webrtc/call/audio_send_stream.cc
+++ b/webrtc/call/audio_send_stream.cc
@@ -40,7 +40,7 @@ AudioSendStream::Config::~Config() = default;
std::string AudioSendStream::Config::ToString() const {
std::stringstream ss;
ss << "{rtp: " << rtp.ToString();
- ss << ", send_transport: " << (send_transport ? "(Transport)" : "nullptr");
+ ss << ", send_transport: " << (send_transport ? "(Transport)" : "null");
ss << ", voe_channel_id: " << voe_channel_id;
ss << ", min_bitrate_bps: " << min_bitrate_bps;
ss << ", max_bitrate_bps: " << max_bitrate_bps;
« no previous file with comments | « webrtc/audio/audio_send_stream_unittest.cc ('k') | webrtc/common_audio/fir_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698