Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(976)

Unified Diff: net/proxy/proxy_service.cc

Issue 1073033002: Modify instrumentation for various jank bugs, mostly removing outdated sites. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/proxy/proxy_script_decider.cc ('k') | net/url_request/url_fetcher_core.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/proxy/proxy_service.cc
diff --git a/net/proxy/proxy_service.cc b/net/proxy/proxy_service.cc
index 48cbadb352fce8624bc02b9cb0bfe9bcd5cc4a07..fe34f7b492865f05c082d94224abc9b94623a52b 100644
--- a/net/proxy/proxy_service.cc
+++ b/net/proxy/proxy_service.cc
@@ -393,11 +393,6 @@ class ProxyService::InitProxyResolver {
const ProxyConfig& config,
TimeDelta wait_delay,
const CompletionCallback& callback) {
- // TODO(pkasting): Remove ScopedTracker below once crbug.com/455942 is
- // fixed.
- tracked_objects::ScopedTracker tracking_profile(
- FROM_HERE_WITH_EXPLICIT_FUNCTION(
- "455942 ProxyService::InitProxyResolver::Start"));
DCHECK_EQ(STATE_NONE, next_state_);
proxy_resolver_ = proxy_resolver;
proxy_resolver_factory_ = proxy_resolver_factory;
@@ -505,8 +500,7 @@ class ProxyService::InitProxyResolver {
}
int DoDecideProxyScript() {
- // TODO(pkasting): Remove ScopedTracker below once crbug.com/455942 is
- // fixed.
+ // TODO(eroman): Remove ScopedTracker below once crbug.com/455942 is fixed.
tracked_objects::ScopedTracker tracking_profile(
FROM_HERE_WITH_EXPLICIT_FUNCTION(
"455942 ProxyService::InitProxyResolver::DoDecideProxyScript"));
@@ -519,12 +513,6 @@ class ProxyService::InitProxyResolver {
}
int DoDecideProxyScriptComplete(int result) {
- // TODO(pkasting): Remove ScopedTracker below once crbug.com/455942 is
- // fixed.
- tracked_objects::ScopedTracker tracking_profile(
- FROM_HERE_WITH_EXPLICIT_FUNCTION(
- "455942 "
- "ProxyService::InitProxyResolver::DoDecideProxyScriptComplete"));
if (result != OK)
return result;
@@ -536,11 +524,6 @@ class ProxyService::InitProxyResolver {
}
int DoSetPacScript() {
- // TODO(pkasting): Remove ScopedTracker below once crbug.com/455942 is
- // fixed.
- tracked_objects::ScopedTracker tracking_profile(
- FROM_HERE_WITH_EXPLICIT_FUNCTION(
- "455942 ProxyService::InitProxyResolver::DoSetPacScript"));
DCHECK(script_data_.get());
// TODO(eroman): Should log this latency to the NetLog.
next_state_ = STATE_SET_PAC_SCRIPT_COMPLETE;
« no previous file with comments | « net/proxy/proxy_script_decider.cc ('k') | net/url_request/url_fetcher_core.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698