Index: base/metrics/histogram_macros.h |
diff --git a/base/metrics/histogram_macros.h b/base/metrics/histogram_macros.h |
index 2aee1a5de440c277e58a846c753ab68ed3ece5fc..9867df8e1462fc4e3259f800f034790ab71ba84e 100644 |
--- a/base/metrics/histogram_macros.h |
+++ b/base/metrics/histogram_macros.h |
@@ -189,6 +189,9 @@ |
#define UMA_HISTOGRAM_COUNTS_100(name, sample) UMA_HISTOGRAM_CUSTOM_COUNTS( \ |
name, sample, 1, 100, 50) |
+#define UMA_HISTOGRAM_COUNTS_1000(name, sample) \ |
+ UMA_HISTOGRAM_CUSTOM_COUNTS(name, sample, 1, 1000, 50) |
+ |
#define UMA_HISTOGRAM_COUNTS_10000(name, sample) UMA_HISTOGRAM_CUSTOM_COUNTS( \ |
name, sample, 1, 10000, 50) |