| Index: net/quic/crypto/crypto_framer.h
|
| diff --git a/net/quic/crypto/crypto_framer.h b/net/quic/crypto/crypto_framer.h
|
| index 7ce714a666bb814b3cc85f87097540353a0c29fc..a200fd6331f6caf903742cacf38ee6e6c91fc011 100644
|
| --- a/net/quic/crypto/crypto_framer.h
|
| +++ b/net/quic/crypto/crypto_framer.h
|
| @@ -44,7 +44,7 @@ class NET_EXPORT_PRIVATE CryptoFramer {
|
|
|
| // ParseMessage parses exactly one message from the given StringPiece. If
|
| // there is an error, the message is truncated, or the message has trailing
|
| - // garbage then NULL will be returned.
|
| + // garbage then nullptr will be returned.
|
| static CryptoHandshakeMessage* ParseMessage(base::StringPiece in);
|
|
|
| // Set callbacks to be called from the framer. A visitor must be set, or
|
| @@ -66,7 +66,7 @@ class NET_EXPORT_PRIVATE CryptoFramer {
|
| size_t InputBytesRemaining() const { return buffer_.length(); }
|
|
|
| // Returns a new QuicData owned by the caller that contains a serialized
|
| - // |message|, or NULL if there was an error.
|
| + // |message|, or nullptr if there was an error.
|
| static QuicData* ConstructHandshakeMessage(
|
| const CryptoHandshakeMessage& message);
|
|
|
|
|