| Index: net/quic/quic_client_session.h
|
| diff --git a/net/quic/quic_client_session.h b/net/quic/quic_client_session.h
|
| index bdfaf2fd4ef2ed653d0d7b4f5b1634e7a47705e9..9c5b70565cbc8d8b9aa7da10cd727ffa71cb5304 100644
|
| --- a/net/quic/quic_client_session.h
|
| +++ b/net/quic/quic_client_session.h
|
| @@ -102,6 +102,8 @@ class NET_EXPORT_PRIVATE QuicClientSession : public QuicSession {
|
| virtual QuicReliableClientStream* CreateOutgoingReliableStream() OVERRIDE;
|
| virtual QuicCryptoClientStream* GetCryptoStream() OVERRIDE;
|
| virtual void CloseStream(QuicStreamId stream_id) OVERRIDE;
|
| + virtual void SendRstStream(QuicStreamId id,
|
| + QuicRstStreamErrorCode error) OVERRIDE;
|
| virtual void OnCryptoHandshakeEvent(CryptoHandshakeEvent event) OVERRIDE;
|
| virtual void OnCryptoHandshakeMessageSent(
|
| const CryptoHandshakeMessage& message) OVERRIDE;
|
| @@ -144,6 +146,8 @@ class NET_EXPORT_PRIVATE QuicClientSession : public QuicSession {
|
| // A completion callback invoked when a read completes.
|
| void OnReadComplete(int result);
|
|
|
| + void OnClosedStream();
|
| +
|
| void CloseSessionOnErrorInner(int error);
|
|
|
| // Posts a task to notify the factory that this session has been closed.
|
|
|