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

Unified Diff: tools/metrics/histograms/histograms.xml

Issue 345733006: UMA Metrics to track profile deletion, along with signed-in status. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Enum for the histogram config Created 6 years, 6 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:
Download patch
« no previous file with comments | « chrome/browser/profiles/profile_metrics.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 78519acc839dc21a7aa5346248bde389e7d43380..fb5f154d98bfc28a8c968b4a0025202d05a38e00 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -22439,6 +22439,17 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Profile.Delete" enum="BooleanProfileSignedIn">
+ <owner>mlerman@chromium.org</owner>
+ <summary>
+ The user used the settings page to delete a profile. Please note this
+ histogram tracks the user interaction, and not the actual delete of the
+ profile, which can happen much later. The parameter indicates if the profile
+ was signed in or not; true means the profile was signed in, false means the
+ profile was not signed in.
+ </summary>
+</histogram>
+
<histogram name="Profile.DesktopMenu" enum="ProfileDesktopMenu">
<owner>mlerman@chromium.org</owner>
<summary>
@@ -33872,6 +33883,11 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="1" label="Orphan"/>
</enum>
+<enum name="BooleanProfileSignedIn" type="int">
+ <int value="0" label="Profile was not Signed In"/>
+ <int value="1" label="Profile was Signed In"/>
+</enum>
+
<enum name="BooleanRaced" type="int">
<int value="0" label="Did Not Race"/>
<int value="1" label="Raced"/>
« no previous file with comments | « chrome/browser/profiles/profile_metrics.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698