Index: net/base/connection_type_histograms.cc |
diff --git a/net/base/connection_type_histograms.cc b/net/base/connection_type_histograms.cc |
index e64619c337ec454554e7de6f2aa5edb52d1c7f2d..23cdb04823292b42158ea6a976325dc1019e3f5c 100644 |
--- a/net/base/connection_type_histograms.cc |
+++ b/net/base/connection_type_histograms.cc |
@@ -27,12 +27,12 @@ void UpdateConnectionTypeHistograms(ConnectionType type) { |
if (type >= 0 && type < NUM_OF_CONNECTION_TYPES) { |
if (!had_connection_type[type]) { |
had_connection_type[type] = true; |
- UMA_HISTOGRAM_ENUMERATION("Net.HadConnectionType3", |
- type, NUM_OF_CONNECTION_TYPES); |
+ UMA_HISTOGRAM_ENUMERATION( |
+ "Net.HadConnectionType3", type, NUM_OF_CONNECTION_TYPES); |
} |
- UMA_HISTOGRAM_ENUMERATION("Net.ConnectionTypeCount3", |
- type, NUM_OF_CONNECTION_TYPES); |
+ UMA_HISTOGRAM_ENUMERATION( |
+ "Net.ConnectionTypeCount3", type, NUM_OF_CONNECTION_TYPES); |
} else { |
NOTREACHED(); // Someone's logging an invalid type! |
} |