| Index: net/quic/quic_crypto_client_stream.h
|
| diff --git a/net/quic/quic_crypto_client_stream.h b/net/quic/quic_crypto_client_stream.h
|
| index e85a764049a22c9c5ab6511895406f6ae86567d3..42a7b5d9757c3a812b34c620dc6723753c5e4a31 100644
|
| --- a/net/quic/quic_crypto_client_stream.h
|
| +++ b/net/quic/quic_crypto_client_stream.h
|
| @@ -47,6 +47,7 @@ class NET_EXPORT_PRIVATE QuicCryptoClientStream : public QuicCryptoStream {
|
| STATE_IDLE,
|
| STATE_SEND_CHLO,
|
| STATE_RECV_REJ,
|
| + STATE_PROOF_VERIFICATION_COMPLETED,
|
| STATE_RECV_SHLO,
|
| };
|
|
|
| @@ -54,6 +55,8 @@ class NET_EXPORT_PRIVATE QuicCryptoClientStream : public QuicCryptoStream {
|
| // |in| is NULL for the first call.
|
| void DoHandshakeLoop(const CryptoHandshakeMessage* in);
|
|
|
| + void VerifyProofCompleted(int result);
|
| +
|
| State next_state_;
|
| // num_client_hellos_ contains the number of client hello messages that this
|
| // connection has sent.
|
|
|