summaryrefslogtreecommitdiffstats
path: root/net/http
diff options
context:
space:
mode:
authorrtenneti <rtenneti@chromium.org>2015-10-26 20:00:55 -0700
committerCommit bot <commit-bot@chromium.org>2015-10-27 03:01:37 +0000
commit4f56bc21d6a622f887a233e9eee6190a76b6f703 (patch)
treee0d563fa4488d7356c2d5e26c94f747793376f3b /net/http
parent5c98d330e26e8547932f7fdac8ef1b55e928c782 (diff)
downloadchromium_src-4f56bc21d6a622f887a233e9eee6190a76b6f703.zip
chromium_src-4f56bc21d6a622f887a233e9eee6190a76b6f703.tar.gz
chromium_src-4f56bc21d6a622f887a233e9eee6190a76b6f703.tar.bz2
QUIC - remove the tracking code. All HttpCache::Transaction tasks are
below the threshold. BUG=422516 R=pkasting@chromium.org, rch@chromium.org Review URL: https://codereview.chromium.org/1418513015 Cr-Commit-Position: refs/heads/master@{#356227}
Diffstat (limited to 'net/http')
-rw-r--r--net/http/http_cache_transaction.cc15
1 files changed, 0 insertions, 15 deletions
diff --git a/net/http/http_cache_transaction.cc b/net/http/http_cache_transaction.cc
index 9dd8458..2bdd8f7 100644
--- a/net/http/http_cache_transaction.cc
+++ b/net/http/http_cache_transaction.cc
@@ -1300,11 +1300,6 @@ int HttpCache::Transaction::DoCacheToggleUnusedSincePrefetch() {
// transaction then metadata will be written to cache twice. If prefetching
// becomes more common, consider combining the writes.
- // TODO(rtenneti): Remove ScopedTracker below once crbug.com/422516 is fixed.
- tracked_objects::ScopedTracker tracking_profile(
- FROM_HERE_WITH_EXPLICIT_FUNCTION(
- "422516 HttpCache::Transaction::DoCacheToggleUnusedSincePrefetch"));
-
next_state_ = STATE_TOGGLE_UNUSED_SINCE_PREFETCH_COMPLETE;
return WriteResponseInfoToEntry(false);
}
@@ -1604,11 +1599,6 @@ int HttpCache::Transaction::DoUpdateCachedResponse() {
}
int HttpCache::Transaction::DoCacheWriteUpdatedResponse() {
- // TODO(rtenneti): Remove ScopedTracker below once crbug.com/422516 is fixed.
- tracked_objects::ScopedTracker tracking_profile(
- FROM_HERE_WITH_EXPLICIT_FUNCTION(
- "422516 HttpCache::Transaction::DoCacheWriteUpdatedResponse"));
-
next_state_ = STATE_CACHE_WRITE_UPDATED_RESPONSE_COMPLETE;
return WriteResponseInfoToEntry(false);
}
@@ -1686,11 +1676,6 @@ int HttpCache::Transaction::DoOverwriteCachedResponse() {
}
int HttpCache::Transaction::DoCacheWriteResponse() {
- // TODO(rtenneti): Remove ScopedTracker below once crbug.com/422516 is fixed.
- tracked_objects::ScopedTracker tracking_profile(
- FROM_HERE_WITH_EXPLICIT_FUNCTION(
- "422516 HttpCache::Transaction::DoCacheWriteResponse"));
-
next_state_ = STATE_CACHE_WRITE_RESPONSE_COMPLETE;
return WriteResponseInfoToEntry(truncated_);
}