diff options
author | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-09 01:35:18 +0000 |
---|---|---|
committer | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-09 01:35:18 +0000 |
commit | f73e358d841bef31ece39c4b0436b17869d6241b (patch) | |
tree | 5e1a27671c371b70bb17d100ac9b4ee620a05532 /net/http/http_cache.h | |
parent | 5bc7183a8a86f77d79187b545f4442c02b4b5da4 (diff) | |
download | chromium_src-f73e358d841bef31ece39c4b0436b17869d6241b.zip chromium_src-f73e358d841bef31ece39c4b0436b17869d6241b.tar.gz chromium_src-f73e358d841bef31ece39c4b0436b17869d6241b.tar.bz2 |
Http cache: Remove the option to disable byte range support.
BUG=58323
TEST=current tests
Review URL: http://codereview.chromium.org/5522014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68689 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_cache.h')
-rw-r--r-- | net/http/http_cache.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/net/http/http_cache.h b/net/http/http_cache.h index 06c2ab9..4b7d736 100644 --- a/net/http/http_cache.h +++ b/net/http/http_cache.h @@ -179,10 +179,6 @@ class HttpCache : public HttpTransactionFactory, // immediately, but they will not be reusable. This is for debugging. void CloseCurrentConnections(); - void set_enable_range_support(bool value) { - enable_range_support_ = value; - } - protected: // Disk cache entry data indices. enum { @@ -368,8 +364,6 @@ class HttpCache : public HttpTransactionFactory, ScopedRunnableMethodFactory<HttpCache> task_factory_; - bool enable_range_support_; - typedef base::hash_map<std::string, int> PlaybackCacheMap; scoped_ptr<PlaybackCacheMap> playback_cache_map_; |