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

Unified Diff: net/quic/crypto/quic_crypto_server_config_test.cc

Issue 1542753004: Replace last remaining NULLs in gfe/quic with nullptr. No behavior change. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@110554875
Patch Set: Created 5 years 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') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/crypto/quic_crypto_server_config_test.cc
diff --git a/net/quic/crypto/quic_crypto_server_config_test.cc b/net/quic/crypto/quic_crypto_server_config_test.cc
index 21c338d94d46d19607daa2a30f7bc5239a782567..382d213cfa00bf4b86c78c3abc8e4dce5b3c62ac 100644
--- a/net/quic/crypto/quic_crypto_server_config_test.cc
+++ b/net/quic/crypto/quic_crypto_server_config_test.cc
@@ -277,14 +277,14 @@ class SourceAddressTokenTest : public ::testing::Test {
}
string NewSourceAddressToken(string config_id, const IPAddressNumber& ip) {
- return NewSourceAddressToken(config_id, ip, NULL);
+ return NewSourceAddressToken(config_id, ip, nullptr);
}
string NewSourceAddressToken(string config_id,
const IPAddressNumber& ip,
const SourceAddressTokens& previous_tokens) {
return peer_.NewSourceAddressToken(config_id, previous_tokens, ip, rand_,
- clock_.WallNow(), NULL);
+ clock_.WallNow(), nullptr);
}
string NewSourceAddressToken(string config_id,
@@ -299,7 +299,7 @@ class SourceAddressTokenTest : public ::testing::Test {
string config_id,
StringPiece srct,
const IPAddressNumber& ip) {
- return ValidateSourceAddressTokens(config_id, srct, ip, NULL);
+ return ValidateSourceAddressTokens(config_id, srct, ip, nullptr);
}
HandshakeFailureReason ValidateSourceAddressTokens(
« no previous file with comments | « net/quic/crypto/channel_id_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698