summaryrefslogtreecommitdiffstats
path: root/net/http/http_cache.h
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-23 04:14:20 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-23 04:14:20 +0000
commit3c24a4682e05dc4496c0a9d898872ac39d142817 (patch)
tree1f4a2209077c42f38ee2f6f46ed670221d00f13f /net/http/http_cache.h
parentbd25f1d16e9f9c8f94a6e761719d7239028447c8 (diff)
downloadchromium_src-3c24a4682e05dc4496c0a9d898872ac39d142817.zip
chromium_src-3c24a4682e05dc4496c0a9d898872ac39d142817.tar.gz
chromium_src-3c24a4682e05dc4496c0a9d898872ac39d142817.tar.bz2
net: Remove key argument from ActivateEntry function.
(Note: This was a TODO for rvargas). BUG=None TEST=locally Review URL: http://codereview.chromium.org/3847003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63631 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_cache.h')
-rw-r--r--net/http/http_cache.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/net/http/http_cache.h b/net/http/http_cache.h
index 255d7b6..0ce22e5 100644
--- a/net/http/http_cache.h
+++ b/net/http/http_cache.h
@@ -257,10 +257,8 @@ class HttpCache : public HttpTransactionFactory,
ActiveEntry* FindActiveEntry(const std::string& key);
// Creates a new ActiveEntry and starts tracking it. |disk_entry| is the disk
- // cache entry that corresponds to the desired |key|.
- // TODO(rvargas): remove the |key| argument.
- ActiveEntry* ActivateEntry(const std::string& key,
- disk_cache::Entry* disk_entry);
+ // cache entry.
+ ActiveEntry* ActivateEntry(disk_cache::Entry* disk_entry);
// Deletes an ActiveEntry.
void DeactivateEntry(ActiveEntry* entry);