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

Unified Diff: content/browser/download/download_stats.cc

Issue 10915180: Make DownloadHistory observe manager, items (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: @r168573 Created 8 years, 1 month 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
Index: content/browser/download/download_stats.cc
diff --git a/content/browser/download/download_stats.cc b/content/browser/download/download_stats.cc
index b454c2714e451a8e6cef0b88b8a7cbfeb643957b..2da505a27a00e85e61d46f28f4c2995e71b8d3ce 100644
--- a/content/browser/download/download_stats.cc
+++ b/content/browser/download/download_stats.cc
@@ -278,14 +278,6 @@ void RecordOpen(const base::Time& end, bool first) {
}
}
-void RecordHistorySize(int size) {
- UMA_HISTOGRAM_CUSTOM_COUNTS("Download.HistorySize2",
- size,
- 0/*min*/,
- (1 << 23)/*max*/,
- (1 << 7)/*num_buckets*/);
-}
-
void RecordClearAllSize(int size) {
UMA_HISTOGRAM_CUSTOM_COUNTS("Download.ClearAllSize",
size,

Powered by Google App Engine
This is Rietveld 408576698