Index: net/quic/quic_stream_factory.cc |
diff --git a/net/quic/quic_stream_factory.cc b/net/quic/quic_stream_factory.cc |
index 02066663541e1a692c9ec68accdace7a32e93900..9eb1fe8dd9a5d399e03487fbcfaf2474b8a5c239 100644 |
--- a/net/quic/quic_stream_factory.cc |
+++ b/net/quic/quic_stream_factory.cc |
@@ -401,6 +401,7 @@ QuicStreamFactory::QuicStreamFactory( |
QuicRandom* random_generator, |
QuicClock* clock, |
size_t max_packet_length, |
+ const std::string& client_version, |
const QuicVersionVector& supported_versions, |
bool enable_port_selection, |
bool enable_pacing, |
@@ -429,6 +430,7 @@ QuicStreamFactory::QuicStreamFactory( |
QuicTime::Delta::FromSeconds(30)); |
crypto_config_.SetDefaults(); |
+ crypto_config_.set_client_version(client_version); |
crypto_config_.AddCanonicalSuffix(".c.youtube.com"); |
crypto_config_.AddCanonicalSuffix(".googlevideo.com"); |
crypto_config_.SetProofVerifier(new ProofVerifierChromium(cert_verifier)); |