diff options
author | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-15 00:31:39 +0000 |
---|---|---|
committer | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-15 00:31:39 +0000 |
commit | b90808cb3f34a131efbeeadae4a55dd7ac164727 (patch) | |
tree | e0393c43bb07cb83aa14a40b159f69f3082c9e4f /net | |
parent | f1cbb8c8cf75fb8ad6c1c4eeaca8101339d718c3 (diff) | |
download | chromium_src-b90808cb3f34a131efbeeadae4a55dd7ac164727.zip chromium_src-b90808cb3f34a131efbeeadae4a55dd7ac164727.tar.gz chromium_src-b90808cb3f34a131efbeeadae4a55dd7ac164727.tar.bz2 |
net: Enable the infinite cache simulation.
BUG=147383
TEST=none
Review URL: https://codereview.chromium.org/10914300
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156941 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r-- | net/http/http_cache.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/http/http_cache.cc b/net/http/http_cache.cc index 32ae60a..5c6ff2e 100644 --- a/net/http/http_cache.cc +++ b/net/http/http_cache.cc @@ -391,7 +391,7 @@ void HttpCache::InitializeInfiniteCache(const FilePath& path) { if (base::FieldTrialList::FindFullName("InfiniteCache") != "Yes") return; // To be enabled after everything is fully wired. - // infinite_cache_.Init(path); + infinite_cache_.Init(path); } int HttpCache::CreateTransaction(scoped_ptr<HttpTransaction>* trans, |