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

Unified Diff: webrtc/audio/audio_receive_stream.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/audio/audio_receive_stream.cc
diff --git a/webrtc/audio/audio_receive_stream.cc b/webrtc/audio/audio_receive_stream.cc
index 05d6edfa4c1fccd33b953ec2e38c3c456eefcb83..ccf97d549e27de34ac2605d58224293eb685b2e9 100644
--- a/webrtc/audio/audio_receive_stream.cc
+++ b/webrtc/audio/audio_receive_stream.cc
@@ -51,7 +51,7 @@ std::string AudioReceiveStream::Config::ToString() const {
std::stringstream ss;
ss << "{rtp: " << rtp.ToString();
ss << ", rtcp_send_transport: "
- << (rtcp_send_transport ? "(Transport)" : "nullptr");
+ << (rtcp_send_transport ? "(Transport)" : "null");
tommi 2017/02/11 09:55:34 in cases like these, I think we should not change
Taylor Brandstetter 2017/02/11 17:48:56 I agree; the script I wrote will use "null" in str
ss << ", voe_channel_id: " << voe_channel_id;
if (!sync_group.empty()) {
ss << ", sync_group: " << sync_group;

Powered by Google App Engine
This is Rietveld 408576698