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

Unified Diff: net/quic/crypto/crypto_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/crypto/channel_id_test.cc ('k') | net/quic/crypto/crypto_framer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « net/quic/crypto/channel_id_test.cc ('k') | net/quic/crypto/crypto_framer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698