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

Unified Diff: base/android/java/src/org/chromium/base/metrics/RecordHistogram.java

Issue 2455803002: Enforce min expected value for CustomCountHistograms on android (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « no previous file | base/android/record_histogram.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/android/java/src/org/chromium/base/metrics/RecordHistogram.java
diff --git a/base/android/java/src/org/chromium/base/metrics/RecordHistogram.java b/base/android/java/src/org/chromium/base/metrics/RecordHistogram.java
index 56a5803c5c50b64e658f6a68d03fa24891f47438..7548fc5ecf65155a2cf2fb2d27cc10aa1c673dcd 100644
--- a/base/android/java/src/org/chromium/base/metrics/RecordHistogram.java
+++ b/base/android/java/src/org/chromium/base/metrics/RecordHistogram.java
@@ -111,7 +111,7 @@ public class RecordHistogram {
* UMA_HISTOGRAM_CUSTOM_COUNTS C++ macro.
* @param name name of the histogram
* @param sample sample to be recorded, at least |min| and at most |max| - 1
- * @param min lower bound for expected sample values
+ * @param min lower bound for expected sample values. It must be >= 1
gone 2016/10/27 21:32:52 "lower bound for expected sample values, at least
* @param max upper bounds for expected sample values
* @param numBuckets the number of buckets
*/
« no previous file with comments | « no previous file | base/android/record_histogram.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698