summaryrefslogtreecommitdiffstats
path: root/net/http
diff options
context:
space:
mode:
authortburkard@chromium.org <tburkard@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-09 03:25:47 +0000
committertburkard@chromium.org <tburkard@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-09 03:25:47 +0000
commit527ea85f7ce8620d9d577d00a95220007e4d073d (patch)
tree212abef7a9c1e0a92742f15db64fcfc98ce8fe71 /net/http
parent281288d32657c08f47c0a894c5b90d1027a2b3e1 (diff)
downloadchromium_src-527ea85f7ce8620d9d577d00a95220007e4d073d.zip
chromium_src-527ea85f7ce8620d9d577d00a95220007e4d073d.tar.gz
chromium_src-527ea85f7ce8620d9d577d00a95220007e4d073d.tar.bz2
Revert 166580 - Consider {Create,Open,Doom}Entry for CacheSensitivity Analysis.
R=rvargas CC=cbentzel Review URL: https://codereview.chromium.org/11359095 TBR=tburkard@chromium.org Review URL: https://codereview.chromium.org/11358171 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166845 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http')
-rw-r--r--net/http/http_cache_transaction.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/http/http_cache_transaction.cc b/net/http/http_cache_transaction.cc
index 212309d..025f869 100644
--- a/net/http/http_cache_transaction.cc
+++ b/net/http/http_cache_transaction.cc
@@ -923,7 +923,7 @@ int HttpCache::Transaction::DoOpenEntry() {
net_log_.BeginEvent(NetLog::TYPE_HTTP_CACHE_OPEN_ENTRY);
first_cache_access_since_ = TimeTicks::Now();
ReportCacheActionStart();
- return ResetCacheIOStart(cache_->OpenEntry(cache_key_, &new_entry_, this));
+ return cache_->OpenEntry(cache_key_, &new_entry_, this);
}
int HttpCache::Transaction::DoOpenEntryComplete(int result) {
@@ -975,7 +975,7 @@ int HttpCache::Transaction::DoCreateEntry() {
cache_pending_ = true;
net_log_.BeginEvent(NetLog::TYPE_HTTP_CACHE_CREATE_ENTRY);
ReportCacheActionStart();
- return ResetCacheIOStart(cache_->CreateEntry(cache_key_, &new_entry_, this));
+ return cache_->CreateEntry(cache_key_, &new_entry_, this);
}
int HttpCache::Transaction::DoCreateEntryComplete(int result) {
@@ -1014,7 +1014,7 @@ int HttpCache::Transaction::DoDoomEntry() {
first_cache_access_since_ = TimeTicks::Now();
net_log_.BeginEvent(NetLog::TYPE_HTTP_CACHE_DOOM_ENTRY);
ReportCacheActionStart();
- return ResetCacheIOStart(cache_->DoomEntry(cache_key_, this));
+ return cache_->DoomEntry(cache_key_, this);
}
int HttpCache::Transaction::DoDoomEntryComplete(int result) {