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

Unified Diff: net/quic/quic_session.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_server_test.cc ('k') | net/quic/quic_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_session.h
diff --git a/net/quic/quic_session.h b/net/quic/quic_session.h
index df5c0ebc43822f0a07072c59e316bf54417b1a3f..7a52fba7a5c604d78886618049c6629a84e09060 100644
--- a/net/quic/quic_session.h
+++ b/net/quic/quic_session.h
@@ -212,12 +212,12 @@ class NET_EXPORT_PRIVATE QuicSession : public QuicConnectionVisitorInterface {
typedef base::hash_map<QuicStreamId, QuicDataStream*> DataStreamMap;
// Creates a new stream, owned by the caller, to handle a peer-initiated
- // stream. Returns NULL and does error handling if the stream can not be
+ // stream. Returns nullptr and does error handling if the stream can not be
// created.
virtual QuicDataStream* CreateIncomingDataStream(QuicStreamId id) = 0;
// Create a new stream, owned by the caller, to handle a locally-initiated
- // stream. Returns NULL if max streams have already been opened.
+ // stream. Returns nullptr if max streams have already been opened.
virtual QuicDataStream* CreateOutgoingDataStream() = 0;
// Return the reserved crypto stream.
« no previous file with comments | « net/quic/quic_server_test.cc ('k') | net/quic/quic_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698