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 84592ed023f540284f2fea63c5dad79cfe959d23..c2e330d9da33c85baeae1d2cb660599a8440310f 100644 |
--- a/net/ftp/ftp_server_type_histograms.cc |
+++ b/net/ftp/ftp_server_type_histograms.cc |
@@ -22,12 +22,12 @@ 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.HadFtpServerType2", |
- type, NUM_OF_SERVER_TYPES); |
+ UMA_HISTOGRAM_ENUMERATION( |
+ "Net.HadFtpServerType2", type, NUM_OF_SERVER_TYPES); |
} |
} |
- UMA_HISTOGRAM_ENUMERATION("Net.FtpServerTypeCount2", |
- type, NUM_OF_SERVER_TYPES); |
+ UMA_HISTOGRAM_ENUMERATION( |
+ "Net.FtpServerTypeCount2", type, NUM_OF_SERVER_TYPES); |
} |
} // namespace net |