summaryrefslogtreecommitdiffstats
path: root/net/http/http_cache.h
diff options
context:
space:
mode:
authorrvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-11 22:27:33 +0000
committerrvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-11 22:27:33 +0000
commit0efab8e73835ae8a05bd21bfb56b16524eb70868 (patch)
tree4fd97f6d4be8059e26ec5c284abcad2c26645f34 /net/http/http_cache.h
parentadb072f92d93e5adf28a77fb4f6c15effca7b001 (diff)
downloadchromium_src-0efab8e73835ae8a05bd21bfb56b16524eb70868.zip
chromium_src-0efab8e73835ae8a05bd21bfb56b16524eb70868.tar.gz
chromium_src-0efab8e73835ae8a05bd21bfb56b16524eb70868.tar.bz2
Http cache: Remove deprecated code.
BUG=26729 TEST=current tests Review URL: http://codereview.chromium.org/2776007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49600 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_cache.h')
-rw-r--r--net/http/http_cache.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/net/http/http_cache.h b/net/http/http_cache.h
index 79c2134..04dc144 100644
--- a/net/http/http_cache.h
+++ b/net/http/http_cache.h
@@ -135,12 +135,6 @@ class HttpCache : public HttpTransactionFactory,
HttpTransactionFactory* network_layer() { return network_layer_.get(); }
- // Returns the cache backend for this HttpCache instance. If the backend
- // is not initialized yet, this method will initialize it. If the return
- // value is NULL then the backend cannot be initialized.
- // This method is deprecated.
- disk_cache::Backend* GetBackend();
-
// Retrieves the cache backend for this HttpCache instance. If the backend
// is not initialized yet, this method will initialize it. The return value is
// a network error code, and it could be ERR_IO_PENDING, in which case the
@@ -157,21 +151,6 @@ class HttpCache : public HttpTransactionFactory,
virtual HttpNetworkSession* GetSession();
virtual void Suspend(bool suspend);
- // Helper function for reading response info from the disk cache. If the
- // cache doesn't have the whole resource *|request_truncated| is set to true.
- // NOTE: This method is deprecated.
- static bool ReadResponseInfo(disk_cache::Entry* disk_entry,
- HttpResponseInfo* response_info,
- bool* response_truncated);
-
- // Helper function for writing response info into the disk cache. If the
- // cache doesn't have the whole resource |request_truncated| should be true.
- // NOTE: This method is deprecated.
- static bool WriteResponseInfo(disk_cache::Entry* disk_entry,
- const HttpResponseInfo* response_info,
- bool skip_transient_headers,
- bool response_truncated);
-
// Given a header data blob, convert it to a response info object.
static bool ParseResponseInfo(const char* data, int len,
HttpResponseInfo* response_info,