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

Unified Diff: net/quic/quic_stream_factory.cc

Issue 356713005: Rename ServerBoundCert => ChannelID to reflect the current name (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix cookies_list.js Created 6 years, 5 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
Index: net/quic/quic_stream_factory.cc
diff --git a/net/quic/quic_stream_factory.cc b/net/quic/quic_stream_factory.cc
index 337493c6d732bf7a2aadef3d1e5c9d391af55c9f..c39945632108bc107a4610c0ccb557e03ce18165 100644
--- a/net/quic/quic_stream_factory.cc
+++ b/net/quic/quic_stream_factory.cc
@@ -453,7 +453,7 @@ QuicStreamFactory::QuicStreamFactory(
ClientSocketFactory* client_socket_factory,
base::WeakPtr<HttpServerProperties> http_server_properties,
CertVerifier* cert_verifier,
- ServerBoundCertService* server_bound_cert_service,
+ ChannelIDService* channel_id_service,
QuicCryptoClientStreamFactory* quic_crypto_client_stream_factory,
QuicRandom* random_generator,
QuicClock* clock,
@@ -489,7 +489,7 @@ QuicStreamFactory::QuicStreamFactory(
// caused by Channel ID lookup.
#if 0
crypto_config_.SetChannelIDSource(
- new ChannelIDSourceChromium(server_bound_cert_service));
+ new ChannelIDSourceChromium(channel_id_service));
#endif
base::CPU cpu;
if (cpu.has_aesni() && cpu.has_avx())

Powered by Google App Engine
This is Rietveld 408576698