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

Unified Diff: webrtc/modules/audio_coding/acm2/audio_coding_module.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/modules/audio_coding/acm2/audio_coding_module.cc
diff --git a/webrtc/modules/audio_coding/acm2/audio_coding_module.cc b/webrtc/modules/audio_coding/acm2/audio_coding_module.cc
index 32e694008887dcc6a8112b375b7bdf112dcc0668..7080b7abfc43a8e48cd646f787fa64494e3bd7ec 100644
--- a/webrtc/modules/audio_coding/acm2/audio_coding_module.cc
+++ b/webrtc/modules/audio_coding/acm2/audio_coding_module.cc
@@ -455,8 +455,8 @@ AudioCodingModuleImpl::AudioCodingModuleImpl(
receiver_initialized_(false),
first_10ms_data_(false),
first_frame_(true),
- packetization_callback_(NULL),
- vad_callback_(NULL),
+ packetization_callback_(nullptr),
+ vad_callback_(nullptr),
codec_histogram_bins_log_(),
number_of_consecutive_empty_packets_(0) {
if (InitializeReceiverSafe() < 0) {

Powered by Google App Engine
This is Rietveld 408576698