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

Unified Diff: net/quic/quic_stream_factory.h

Issue 346323002: net: Implement ChannelIDSourceChromium, which is based on Chromium's (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Rebase Created 6 years, 6 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/quic/quic_crypto_server_stream_test.cc ('k') | net/quic/quic_stream_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_stream_factory.h
===================================================================
--- net/quic/quic_stream_factory.h (revision 280648)
+++ net/quic/quic_stream_factory.h (working copy)
@@ -38,6 +38,7 @@
class QuicServerInfoFactory;
class QuicServerId;
class QuicStreamFactory;
+class ServerBoundCertService;
namespace test {
class QuicStreamFactoryPeer;
@@ -51,7 +52,7 @@
explicit QuicStreamRequest(QuicStreamFactory* factory);
~QuicStreamRequest();
- // For http, |is_https| is false and |cert_verifier| can be null.
+ // For http, |is_https| is false.
int Request(const HostPortPair& host_port_pair,
bool is_https,
PrivacyMode privacy_mode,
@@ -91,6 +92,7 @@
ClientSocketFactory* client_socket_factory,
base::WeakPtr<HttpServerProperties> http_server_properties,
CertVerifier* cert_verifier,
+ ServerBoundCertService* server_bound_cert_service,
QuicCryptoClientStreamFactory* quic_crypto_client_stream_factory,
QuicRandom* random_generator,
QuicClock* clock,
@@ -105,11 +107,9 @@
// Creates a new QuicHttpStream to |host_port_pair| which will be
// owned by |request|. |is_https| specifies if the protocol is https or not.
- // |cert_verifier| is used by ProofVerifier for verifying the certificate
- // chain and signature. For http, this can be null. If a matching session
- // already exists, this method will return OK. If no matching session exists,
- // this will return ERR_IO_PENDING and will invoke OnRequestComplete
- // asynchronously.
+ // If a matching session already exists, this method will return OK. If no
+ // matching session exists, this will return ERR_IO_PENDING and will invoke
+ // OnRequestComplete asynchronously.
int Create(const HostPortPair& host_port_pair,
bool is_https,
PrivacyMode privacy_mode,
@@ -236,7 +236,6 @@
HostResolver* host_resolver_;
ClientSocketFactory* client_socket_factory_;
base::WeakPtr<HttpServerProperties> http_server_properties_;
- CertVerifier* cert_verifier_;
QuicServerInfoFactory* quic_server_info_factory_;
QuicCryptoClientStreamFactory* quic_crypto_client_stream_factory_;
QuicRandom* random_generator_;
« no previous file with comments | « net/quic/quic_crypto_server_stream_test.cc ('k') | net/quic/quic_stream_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698