| Index: net/quic/quic_session.cc
|
| diff --git a/net/quic/quic_session.cc b/net/quic/quic_session.cc
|
| index 3df8b0ad386af5702b3f7c4da172d30811fef28e..b6c3f1099a7dad2bcd0bb360b61c0587e0c40f44 100644
|
| --- a/net/quic/quic_session.cc
|
| +++ b/net/quic/quic_session.cc
|
| @@ -5,6 +5,7 @@
|
| #include "net/quic/quic_session.h"
|
|
|
| #include "base/stl_util.h"
|
| +#include "net/quic/crypto/proof_verifier.h"
|
| #include "net/quic/quic_connection.h"
|
|
|
| using base::StringPiece;
|
| @@ -257,6 +258,16 @@ void QuicSession::OnCryptoHandshakeEvent(CryptoHandshakeEvent event) {
|
| }
|
| }
|
|
|
| +// TODO(rtenneti): Don't port proof_verifier code back to google3 until we have
|
| +// a way to have single ProofVerifier that can handle multiple requests.
|
| +ProofVerifier* QuicSession::proof_verifier() const {
|
| + return proof_verifier_.get();
|
| +}
|
| +
|
| +void QuicSession::SetProofVerifier(ProofVerifier* verifier) {
|
| + proof_verifier_.reset(verifier);
|
| +}
|
| +
|
| QuicConfig* QuicSession::config() {
|
| return &config_;
|
| }
|
|
|