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

Unified Diff: base/metrics/histogram_base.h

Issue 137623002: Let MetricsService know about some Android Activities (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: revert 0 to Histogram::kNoFlags Created 6 years, 11 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: base/metrics/histogram_base.h
diff --git a/base/metrics/histogram_base.h b/base/metrics/histogram_base.h
index 4248bd84a4c3136f6f2a1ee60483fa54e14ce2e9..92678ff386266d226bf0035733b5baa193cbf057 100644
--- a/base/metrics/histogram_base.h
+++ b/base/metrics/histogram_base.h
@@ -57,6 +57,9 @@ class BASE_EXPORT HistogramBase {
kNoFlags = 0,
kUmaTargetedHistogramFlag = 0x1, // Histogram should be UMA uploaded.
+ // Histogram should be UMA uploaded, but as a part of initial stability log.
+ kUmaTargetedStabilityHistogramFlag =0x2,
Alexei Svitkine (slow) 2014/01/22 21:14:19 I think the flag should mention it's an Stability
Kibeom Kim (inactive) 2014/01/24 19:45:09 Done.
+
// Indicate that the histogram was pickled to be sent across an IPC Channel.
// If we observe this flag on a histogram being aggregated into after IPC,
// then we are running in a single process mode, and the aggregation should

Powered by Google App Engine
This is Rietveld 408576698