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

Unified Diff: net/quic/quic_framer.h

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/quic_end_to_end_unittest.cc ('k') | net/quic/quic_framer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_framer.h
diff --git a/net/quic/quic_framer.h b/net/quic/quic_framer.h
index 348980387904d5ce2ab59e6dd2ca36d1534d6549..4cc51f11ed6f8f0ad9ee12d8e4632999195602c3 100644
--- a/net/quic/quic_framer.h
+++ b/net/quic/quic_framer.h
@@ -306,15 +306,15 @@ class NET_EXPORT_PRIVATE QuicFramer {
QuicSequenceNumberLength sequence_number_length);
// Returns a SerializedPacket whose |packet| member is owned by the caller,
- // is created from the first |num_frames| frames, or is NULL if the packet
+ // is created from the first |num_frames| frames, or is nullptr if the packet
// could not be created. The packet must be of size |packet_size|.
SerializedPacket BuildDataPacket(const QuicPacketHeader& header,
const QuicFrames& frames,
size_t packet_size);
// Returns a SerializedPacket whose |packet| member is owned by the caller,
- // and is populated with the fields in |header| and |fec|, or is NULL if the
- // packet could not be created.
+ // and is populated with the fields in |header| and |fec|, or is nullptr if
+ // the packet could not be created.
SerializedPacket BuildFecPacket(const QuicPacketHeader& header,
const QuicFecData& fec);
« no previous file with comments | « net/quic/quic_end_to_end_unittest.cc ('k') | net/quic/quic_framer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698