diff options
author | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-06 17:06:54 +0000 |
---|---|---|
committer | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-06 17:06:54 +0000 |
commit | d9d7c7368bc7f3190791466b2db63baca1063f34 (patch) | |
tree | ad77bc9015b356e84095d2a42af7f7a93ca28ff1 /net | |
parent | 6ab10c20e66531b9b9cb4a8059fbae7a8be5a8e2 (diff) | |
download | chromium_src-d9d7c7368bc7f3190791466b2db63baca1063f34.zip chromium_src-d9d7c7368bc7f3190791466b2db63baca1063f34.tar.gz chromium_src-d9d7c7368bc7f3190791466b2db63baca1063f34.tar.bz2 |
Fix clang after r77075.
BUG=none
TEST=builds
Review URL: http://codereview.chromium.org/6626044
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77077 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-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); |