Index: net/quic/crypto/quic_crypto_client_config_test.cc |
diff --git a/net/quic/crypto/quic_crypto_client_config_test.cc b/net/quic/crypto/quic_crypto_client_config_test.cc |
index d15f6b0cdb65f3d827b7895fdaa27b1ed81fd64c..8fb6e05840ef91f480148b0d310021457c8df461 100644 |
--- a/net/quic/crypto/quic_crypto_client_config_test.cc |
+++ b/net/quic/crypto/quic_crypto_client_config_test.cc |
@@ -158,7 +158,7 @@ TEST(QuicCryptoClientConfigTest, InchoateChlo) { |
QuicServerId server_id("www.google.com", 443, PRIVACY_MODE_DISABLED); |
MockRandom rand; |
config.FillInchoateClientHello(server_id, QuicVersionMax(), &state, &rand, |
- ¶ms, &msg); |
+ /* demand_x509_proof= */ true, ¶ms, &msg); |
QuicTag cver; |
EXPECT_EQ(QUIC_NO_ERROR, msg.GetUint32(kVER, &cver)); |
@@ -184,7 +184,7 @@ TEST(QuicCryptoClientConfigTest, InchoateChloSecure) { |
QuicServerId server_id("www.google.com", 443, PRIVACY_MODE_DISABLED); |
MockRandom rand; |
config.FillInchoateClientHello(server_id, QuicVersionMax(), &state, &rand, |
- ¶ms, &msg); |
+ /* demand_x509_proof= */ true, ¶ms, &msg); |
QuicTag pdmd; |
EXPECT_EQ(QUIC_NO_ERROR, msg.GetUint32(kPDMD, &pdmd)); |
@@ -210,7 +210,7 @@ TEST(QuicCryptoClientConfigTest, InchoateChloSecureWithSCID) { |
QuicServerId server_id("www.google.com", 443, PRIVACY_MODE_DISABLED); |
MockRandom rand; |
config.FillInchoateClientHello(server_id, QuicVersionMax(), &state, &rand, |
- ¶ms, &msg); |
+ /* demand_x509_proof= */ true, ¶ms, &msg); |
StringPiece scid; |
EXPECT_TRUE(msg.GetStringPiece(kSCID, &scid)); |
@@ -226,7 +226,7 @@ TEST(QuicCryptoClientConfigTest, InchoateChloSecureNoEcdsa) { |
QuicServerId server_id("www.google.com", 443, PRIVACY_MODE_DISABLED); |
MockRandom rand; |
config.FillInchoateClientHello(server_id, QuicVersionMax(), &state, &rand, |
- ¶ms, &msg); |
+ /* demand_x509_proof= */ true, ¶ms, &msg); |
QuicTag pdmd; |
EXPECT_EQ(QUIC_NO_ERROR, msg.GetUint32(kPDMD, &pdmd)); |