| 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 c5cc843f2f50ebc5b796a3db47535e368d507c23..5b5dbe0cab44aa5baa9d5c795fc6d72567fd35f8 100644
|
| --- a/net/quic/crypto/quic_crypto_client_config_test.cc
|
| +++ b/net/quic/crypto/quic_crypto_client_config_test.cc
|
| @@ -56,7 +56,7 @@
|
| QuicCryptoClientConfig config;
|
| QuicCryptoNegotiatedParameters params;
|
| CryptoHandshakeMessage msg;
|
| - QuicSessionKey server_key("www.google.com", 80, false, PRIVACY_MODE_DISABLED);
|
| + QuicSessionKey server_key("www.google.com", 80, false, kPrivacyModeDisabled);
|
| config.FillInchoateClientHello(server_key, QuicVersionMax(), &state,
|
| ¶ms, &msg);
|
|
|
| @@ -102,14 +102,14 @@
|
| TEST(QuicCryptoClientConfigTest, InitializeFrom) {
|
| QuicCryptoClientConfig config;
|
| QuicSessionKey canonical_key1("www.google.com", 80, false,
|
| - PRIVACY_MODE_DISABLED);
|
| + kPrivacyModeDisabled);
|
| QuicCryptoClientConfig::CachedState* state =
|
| config.LookupOrCreate(canonical_key1);
|
| // TODO(rch): Populate other fields of |state|.
|
| state->set_source_address_token("TOKEN");
|
| state->SetProofValid();
|
|
|
| - QuicSessionKey other_key("mail.google.com", 80, false, PRIVACY_MODE_DISABLED);
|
| + QuicSessionKey other_key("mail.google.com", 80, false, kPrivacyModeDisabled);
|
| config.InitializeFrom(other_key, canonical_key1, &config);
|
| QuicCryptoClientConfig::CachedState* other = config.LookupOrCreate(other_key);
|
|
|
|
|