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

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

Issue 185773006: Add PrivacyMode support to the QuicStreamFactory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase again Created 6 years, 9 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/http/http_stream_factory_impl_job.cc ('k') | net/quic/crypto/quic_crypto_client_config_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/crypto/quic_crypto_client_config.cc
diff --git a/net/quic/crypto/quic_crypto_client_config.cc b/net/quic/crypto/quic_crypto_client_config.cc
index 96369ddb19bb8e19c47825cafa5e684e5369283a..2d8afde82475bde1ae9649b9303c56dca20e3415 100644
--- a/net/quic/crypto/quic_crypto_client_config.cc
+++ b/net/quic/crypto/quic_crypto_client_config.cc
@@ -698,8 +698,9 @@ void QuicCryptoClientConfig::PopulateFromCanonicalConfig(
if (i == canoncial_suffixes_.size())
return;
- QuicSessionKey suffix_server_key(
- canoncial_suffixes_[i], server_key.port(), server_key.is_https());
+ QuicSessionKey suffix_server_key(canoncial_suffixes_[i], server_key.port(),
+ server_key.is_https(),
+ server_key.privacy_mode());
if (!ContainsKey(canonical_server_map_, suffix_server_key)) {
// This is the first host we've seen which matches the suffix, so make it
// canonical.
« no previous file with comments | « net/http/http_stream_factory_impl_job.cc ('k') | net/quic/crypto/quic_crypto_client_config_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698