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

Unified Diff: net/base/connection_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/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!
}

Powered by Google App Engine
This is Rietveld 408576698