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

Unified Diff: net/ftp/ftp_server_type_histograms.cc

Issue 266243004: Clang format slam. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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
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

Powered by Google App Engine
This is Rietveld 408576698