 Chromium Code Reviews
 Chromium Code Reviews Issue 23279011:
  Require handshake confirmation until a QUIC connection is created succesfully when using a new netw…  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src
    
  
    Issue 23279011:
  Require handshake confirmation until a QUIC connection is created succesfully when using a new netw…  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src| Index: net/quic/test_tools/mock_crypto_client_stream.h | 
| diff --git a/net/quic/test_tools/mock_crypto_client_stream.h b/net/quic/test_tools/mock_crypto_client_stream.h | 
| index 2b73b8fd5843ff56a686f44dcca888afec178419..ada1b6883ba9484dbab47366e0ca8f4b17d52411 100644 | 
| --- a/net/quic/test_tools/mock_crypto_client_stream.h | 
| +++ b/net/quic/test_tools/mock_crypto_client_stream.h | 
| @@ -8,6 +8,7 @@ | 
| #include <string> | 
| #include "net/quic/crypto/crypto_handshake.h" | 
| +#include "net/quic/crypto/crypto_protocol.h" | 
| #include "net/quic/quic_crypto_client_stream.h" | 
| #include "net/quic/quic_session.h" | 
| @@ -46,6 +47,10 @@ class MockCryptoClientStream : public QuicCryptoClientStream { | 
| // QuicCryptoClientStream implementation. | 
| virtual bool CryptoConnect() OVERRIDE; | 
| + // Invokes the sessions's CryptoHandshakeEvent method with the specified | 
| 
wtc
2013/08/21 01:09:32
Typo: CryptoHandshakeEvent => OnCryptoHandshakeEve
 | 
| + // event. | 
| + void SendOnCryptoHandshakeEvent(QuicSession::CryptoHandshakeEvent event); | 
| 
wtc
2013/08/21 01:09:32
What does the "Send" in the method's name mean?
 | 
| + | 
| HandshakeMode handshake_mode_; | 
| private: |