| Index: net/quic/quic_client_session.h
|
| diff --git a/net/quic/quic_client_session.h b/net/quic/quic_client_session.h
|
| index 2bf6e7856e59e0a0a56d1836228024df5cb4b2af..fbbbecfb79df213a2633037bc7894f87be1cdb11 100644
|
| --- a/net/quic/quic_client_session.h
|
| +++ b/net/quic/quic_client_session.h
|
| @@ -45,7 +45,10 @@ class NET_EXPORT_PRIVATE QuicClientSession : public QuicSession {
|
| virtual QuicReliableClientStream* CreateOutgoingReliableStream() OVERRIDE;
|
| virtual QuicCryptoClientStream* GetCryptoStream() OVERRIDE;
|
| virtual void CloseStream(QuicStreamId stream_id) OVERRIDE;
|
| - virtual void OnCryptoHandshakeComplete(QuicErrorCode error) OVERRIDE;
|
| + virtual void OnCryptoHandshakeEvent(CryptoHandshakeEvent event) OVERRIDE;
|
| +
|
| + // QuicConnectionVisitorInterface methods:
|
| + virtual void ConnectionClose(QuicErrorCode error, bool from_peer) OVERRIDE;
|
|
|
| // Performs a crypto handshake with the server.
|
| int CryptoConnect(const CompletionCallback& callback);
|
|
|