diff options
author | mmenke@chromium.org <mmenke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-19 00:30:21 +0000 |
---|---|---|
committer | mmenke@chromium.org <mmenke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-19 00:30:21 +0000 |
commit | 07e10dca43b3d55742a6afb506b01c1879fbf216 (patch) | |
tree | 04823d6535f6463b06ab0604d38276e2ac30a907 /net/http/http_stream.h | |
parent | d65e39748cc8cbd5e6a0a6a3faf650ff3ad2eb18 (diff) | |
download | chromium_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/http/http_stream.h')
-rw-r--r-- | net/http/http_stream.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/net/http/http_stream.h b/net/http/http_stream.h index 2143057..0296e23 100644 --- a/net/http/http_stream.h +++ b/net/http/http_stream.h @@ -36,11 +36,6 @@ class NET_EXPORT_PRIVATE HttpStream : public HttpStreamBase { // subclass does not support renewing the stream, NULL is returned. virtual HttpStream* RenewStreamForAuth() = 0; - // After the response headers have been read and after the response body - // is complete, this function indicates if more data (either erroneous or - // as part of the next pipelined response) has been read from the socket. - virtual bool IsMoreDataBuffered() const = 0; - // Record histogram of number of round trips taken to download the full // response body vs bytes transferred. virtual void LogNumRttVsBytesMetrics() const = 0; |