diff options
Diffstat (limited to 'net/spdy')
-rw-r--r-- | net/spdy/spdy_http_stream.cc | 4 | ||||
-rw-r--r-- | net/spdy/spdy_http_stream.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/net/spdy/spdy_http_stream.cc b/net/spdy/spdy_http_stream.cc index 51a2efd..130a818 100644 --- a/net/spdy/spdy_http_stream.cc +++ b/net/spdy/spdy_http_stream.cc @@ -463,4 +463,8 @@ void SpdyHttpStream::GetSSLCertRequestInfo( stream_->GetSSLCertRequestInfo(cert_request_info); } +bool SpdyHttpStream::IsSpdyHttpStream() const { + return true; +} + } // namespace net diff --git a/net/spdy/spdy_http_stream.h b/net/spdy/spdy_http_stream.h index c165b21..4c00e0f 100644 --- a/net/spdy/spdy_http_stream.h +++ b/net/spdy/spdy_http_stream.h @@ -65,7 +65,7 @@ class SpdyHttpStream : public SpdyStream::Delegate, public HttpStream { virtual void SetConnectionReused(); virtual void GetSSLInfo(SSLInfo* ssl_info); virtual void GetSSLCertRequestInfo(SSLCertRequestInfo* cert_request_info); - virtual bool IsSpdyHttpStream() const { return true; } + virtual bool IsSpdyHttpStream() const; // SpdyStream::Delegate methods: virtual bool OnSendHeadersComplete(int status); |