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

Unified Diff: net/ftp/ftp_server_type_histograms.cc

Issue 11360211: FTP: Clean up the server type histogram to use less space. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
« no previous file with comments | « net/ftp/ftp_server_type_histograms.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/ftp/ftp_server_type_histograms.cc
diff --git a/net/ftp/ftp_server_type_histograms.cc b/net/ftp/ftp_server_type_histograms.cc
index 591545be438b8d860f6aa9e9e3b899c1a6366e03..84592ed023f540284f2fea63c5dad79cfe959d23 100644
--- a/net/ftp/ftp_server_type_histograms.cc
+++ b/net/ftp/ftp_server_type_histograms.cc
@@ -22,11 +22,11 @@ void UpdateFtpServerTypeHistograms(FtpServerType type) {
if (type >= 0 && type < NUM_OF_SERVER_TYPES) {
if (!had_server_type[type]) {
had_server_type[type] = true;
- UMA_HISTOGRAM_ENUMERATION("Net.HadFtpServerType",
+ UMA_HISTOGRAM_ENUMERATION("Net.HadFtpServerType2",
type, NUM_OF_SERVER_TYPES);
}
}
- UMA_HISTOGRAM_ENUMERATION("Net.FtpServerTypeCount",
+ UMA_HISTOGRAM_ENUMERATION("Net.FtpServerTypeCount2",
type, NUM_OF_SERVER_TYPES);
}
« no previous file with comments | « net/ftp/ftp_server_type_histograms.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698