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

Unified Diff: chrome/browser/win/jumplist.cc

Issue 2956553002: Retire JumpList favicon loading related UMA histograms (Closed)
Patch Set: Created 3 years, 6 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 | « no previous file | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/win/jumplist.cc
diff --git a/chrome/browser/win/jumplist.cc b/chrome/browser/win/jumplist.cc
index bbca037062d132ddc5c693646170827aee422cee..4e97371d8e5829a86d2dde85cd8c346526bd0c37 100644
--- a/chrome/browser/win/jumplist.cc
+++ b/chrome/browser/win/jumplist.cc
@@ -500,10 +500,6 @@ void JumpList::StartLoadingFavicon() {
GURL(icon_urls_.front().first),
base::Bind(&JumpList::OnFaviconDataAvailable, base::Unretained(this)),
&cancelable_task_tracker_);
-
- // TODO(chengx): Remove the UMA histogram after fixing http://crbug.com/717236
- UMA_HISTOGRAM_TIMES("WinJumplist.StartLoadingFaviconDuration",
- timer.Elapsed());
}
void JumpList::OnFaviconDataAvailable(
@@ -528,10 +524,6 @@ void JumpList::OnFaviconDataAvailable(
icon_urls_.pop_front();
}
- // TODO(chengx): Remove the UMA histogram after fixing http://crbug.com/717236
- UMA_HISTOGRAM_TIMES("WinJumplist.OnFaviconDataAvailableDuration",
- timer.Elapsed());
-
// Check whether we need to load more favicons.
StartLoadingFavicon();
}
« no previous file with comments | « no previous file | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698