| Index: net/quic/quic_http_stream.h
|
| diff --git a/net/quic/quic_http_stream.h b/net/quic/quic_http_stream.h
|
| index f13527ea93022927082dcb5427f0dd97d05ded66..5fa77fcaef4b3cc67735490e18e135a1b5eed0ac 100644
|
| --- a/net/quic/quic_http_stream.h
|
| +++ b/net/quic/quic_http_stream.h
|
| @@ -22,8 +22,8 @@ class QuicHttpStreamPeer;
|
| // The QuicHttpStream is a QUIC-specific HttpStream subclass. It holds a
|
| // non-owning pointer to a QuicReliableClientStream which it uses to
|
| // send and receive data.
|
| -class NET_EXPORT_PRIVATE QuicHttpStream :
|
| - public QuicClientSession::Observer,
|
| +class NET_EXPORT_PRIVATE QuicHttpStream
|
| + : public QuicClientSession::Observer,
|
| public QuicReliableClientStream::Delegate,
|
| public HttpStream {
|
| public:
|
| @@ -107,7 +107,7 @@ class NET_EXPORT_PRIVATE QuicHttpStream :
|
| State next_state_;
|
|
|
| base::WeakPtr<QuicClientSession> session_;
|
| - int session_error_; // Error code from the connection shutdown.
|
| + int session_error_; // Error code from the connection shutdown.
|
| bool was_handshake_confirmed_; // True if the crypto handshake succeeded.
|
| QuicClientSession::StreamRequest stream_request_;
|
| QuicReliableClientStream* stream_; // Non-owning.
|
|
|