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

Unified Diff: net/quic/quic_ack_notifier_manager.cc

Issue 612323013: QUIC - (no behavior change) s/NULL/nullptr/g in .../quic/... (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 | « net/quic/iovector_test.cc ('k') | net/quic/quic_client_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_ack_notifier_manager.cc
diff --git a/net/quic/quic_ack_notifier_manager.cc b/net/quic/quic_ack_notifier_manager.cc
index 70cb927a86d1d56c06112d534acce53819db1bbb..1d9ac9a5c71fd71142eeec0f5db85ab6bd6960b4 100644
--- a/net/quic/quic_ack_notifier_manager.cc
+++ b/net/quic/quic_ack_notifier_manager.cc
@@ -86,7 +86,7 @@ void AckNotifierManager::OnSerializedPacket(
for (QuicFrames::const_iterator it = frames->frames().begin();
it != frames->frames().end(); ++it) {
- if (it->type == STREAM_FRAME && it->stream_frame->notifier != NULL) {
+ if (it->type == STREAM_FRAME && it->stream_frame->notifier != nullptr) {
QuicAckNotifier* notifier = it->stream_frame->notifier;
// The AckNotifier needs to know it is tracking this packet's sequence
« no previous file with comments | « net/quic/iovector_test.cc ('k') | net/quic/quic_client_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698