summaryrefslogtreecommitdiffstats
path: root/net/spdy
diff options
context:
space:
mode:
authormmenke@chromium.org <mmenke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-03-19 00:30:21 +0000
committermmenke@chromium.org <mmenke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-03-19 00:30:21 +0000
commit07e10dca43b3d55742a6afb506b01c1879fbf216 (patch)
tree04823d6535f6463b06ab0604d38276e2ac30a907 /net/spdy
parentd65e39748cc8cbd5e6a0a6a3faf650ff3ad2eb18 (diff)
downloadchromium_src-07e10dca43b3d55742a6afb506b01c1879fbf216.zip
chromium_src-07e10dca43b3d55742a6afb506b01c1879fbf216.tar.gz
chromium_src-07e10dca43b3d55742a6afb506b01c1879fbf216.tar.bz2
Remove the unused HttpStreamBase::IsMoreDataBuffered().
HttpNetworkTransaction used to use it in conjunction with Http proxy error checking, but now there's HttpProxyClientSocket which uses HttpStreamParser directly. BUG=none Review URL: https://chromiumcodereview.appspot.com/12538010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@188886 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/spdy')
-rw-r--r--net/spdy/spdy_http_stream.cc4
-rw-r--r--net/spdy/spdy_http_stream.h1
2 files changed, 0 insertions, 5 deletions
diff --git a/net/spdy/spdy_http_stream.cc b/net/spdy/spdy_http_stream.cc
index fb76f4d..6b21435 100644
--- a/net/spdy/spdy_http_stream.cc
+++ b/net/spdy/spdy_http_stream.cc
@@ -188,10 +188,6 @@ bool SpdyHttpStream::CanFindEndOfResponse() const {
return true;
}
-bool SpdyHttpStream::IsMoreDataBuffered() const {
- return false;
-}
-
bool SpdyHttpStream::IsConnectionReused() const {
return spdy_session_->IsReused();
}
diff --git a/net/spdy/spdy_http_stream.h b/net/spdy/spdy_http_stream.h
index a2d70d9..58b50f4 100644
--- a/net/spdy/spdy_http_stream.h
+++ b/net/spdy/spdy_http_stream.h
@@ -65,7 +65,6 @@ class NET_EXPORT_PRIVATE SpdyHttpStream : public SpdyStream::Delegate,
virtual HttpStream* RenewStreamForAuth() OVERRIDE;
virtual bool IsResponseBodyComplete() const OVERRIDE;
virtual bool CanFindEndOfResponse() const OVERRIDE;
- virtual bool IsMoreDataBuffered() const OVERRIDE;
// Must not be called if a NULL SpdySession was pssed into the
// constructor.