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

Unified Diff: net/quic/test_tools/crypto_test_utils.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/reliable_quic_stream_test.cc ('k') | net/quic/test_tools/crypto_test_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/test_tools/crypto_test_utils.h
diff --git a/net/quic/test_tools/crypto_test_utils.h b/net/quic/test_tools/crypto_test_utils.h
index 643550e87ccfef8e8568ad7281648e09c459c485..c72b904cefa96179cc50e5aaa3317413d3ae5893 100644
--- a/net/quic/test_tools/crypto_test_utils.h
+++ b/net/quic/test_tools/crypto_test_utils.h
@@ -96,7 +96,8 @@ class CryptoTestUtils {
// CommunicateHandshakeMessagesAndRunCallbacks moves messages from |a| to |b|
// and back until |a|'s handshake has completed. If |callback_source| is not
- // NULL, CommunicateHandshakeMessagesAndRunCallbacks also runs callbacks from
+ // nullptr, CommunicateHandshakeMessagesAndRunCallbacks also runs callbacks
+ // from
// |callback_source| between processing messages.
static void CommunicateHandshakeMessagesAndRunCallbacks(
PacketSavingConnection* a_conn,
@@ -151,7 +152,7 @@ class CryptoTestUtils {
// Message constructs a handshake message from a variable number of
// arguments. |message_tag| is passed to |ParseTag| and used as the tag of
- // the resulting message. The arguments are taken in pairs and NULL
+ // the resulting message. The arguments are taken in pairs and nullptr
// terminated. The first of each pair is the tag of a tag/value and is given
// as an argument to |ParseTag|. The second is the value of the tag/value
// pair and is either a hex dump, preceeded by a '#', or a raw value.
@@ -160,7 +161,7 @@ class CryptoTestUtils {
// "CHLO",
// "NOCE", "#11223344",
// "SNI", "www.example.com",
- // NULL);
+ // nullptr);
static CryptoHandshakeMessage Message(const char* message_tag, ...);
// BuildMessage is the same as |Message|, but takes the variable arguments
« no previous file with comments | « net/quic/reliable_quic_stream_test.cc ('k') | net/quic/test_tools/crypto_test_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698