summaryrefslogtreecommitdiffstats
path: root/net/quic/quic_framer.h
diff options
context:
space:
mode:
authorrtenneti <rtenneti@chromium.org>2014-10-02 15:51:42 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-02 22:52:04 +0000
commitbe6357371938cb811880766c94768e534023db29 (patch)
tree6f9a284513d431d6b0ee87eee9876451f0667544 /net/quic/quic_framer.h
parent7fd88cdabc845b15b9723374a52067967d38f9e1 (diff)
downloadchromium_src-be6357371938cb811880766c94768e534023db29.zip
chromium_src-be6357371938cb811880766c94768e534023db29.tar.gz
chromium_src-be6357371938cb811880766c94768e534023db29.tar.bz2
QUIC - (no behavior change) s/NULL/nullptr/g in .../quic/...
C++11 in Chromium! http://g/quic-dev/iBPFBDwPMjQ Merge internal change: 76451118 R=rch@chromium.org, rjshade@chromium.org Review URL: https://codereview.chromium.org/612323013 Cr-Commit-Position: refs/heads/master@{#297937}
Diffstat (limited to 'net/quic/quic_framer.h')
-rw-r--r--net/quic/quic_framer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/quic/quic_framer.h b/net/quic/quic_framer.h
index 3489803..4cc51f1 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);