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

Unified Diff: webrtc/modules/remote_bitrate_estimator/test/estimators/nada.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/remote_bitrate_estimator/test/estimators/nada.cc
diff --git a/webrtc/modules/remote_bitrate_estimator/test/estimators/nada.cc b/webrtc/modules/remote_bitrate_estimator/test/estimators/nada.cc
index 39cad74ce4a79d4bce2c1a85a8115252a01d283e..ee7fd4b8ed7bfa55b4887f6b5aac7e73920a6bed 100644
--- a/webrtc/modules/remote_bitrate_estimator/test/estimators/nada.cc
+++ b/webrtc/modules/remote_bitrate_estimator/test/estimators/nada.cc
@@ -99,7 +99,7 @@ FeedbackPacket* NadaBweReceiver::GetFeedback(int64_t now_ms) {
const int64_t kPacketLossPenaltyMs = 1000; // Referred as d_L.
if (now_ms - last_feedback_ms_ < 100) {
- return NULL;
+ return nullptr;
}
float loss_fraction = RecentPacketLossRatio();

Powered by Google App Engine
This is Rietveld 408576698