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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1016113002: Instrument "Remove this person" in user manager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Log showing profile deletion warning in settings page. Created 5 years, 9 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
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 0cb8649f23eea05b2aed352551d059f8eaa5ab2b..0d7ae4e109bd3bb3d4e14d703cccb151e372a473 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -29073,10 +29073,11 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<histogram name="Profile.DeleteProfileAction" enum="ProfileDeleteAction">
<owner>mlerman@chromium.org</owner>
+ <owner>anthonyvd@chromium.org</owner>
<summary>
- This histogram tracks which UI screen was used to delete a profile. This
- does not track when the profile is actually deleted, which is an
- asycnhronous process that happens later.
+ This histogram tracks which UI screen was used to initiate and confirm the
+ deletion of a profile. This does not track when the profile is actually
+ deleted, which is an asynchronous process that happens later.
</summary>
</histogram>
@@ -56978,8 +56979,21 @@ To add a new entry, add it with any value and run test to compute valid value.
</enum>
<enum name="ProfileDeleteAction" type="int">
- <int value="0" label="Settings Page"/>
- <int value="1" label="User Manager"/>
+ <int value="0" label="Settings Page">
+ The user confirmed deletion of a profile from the settings page.
+ </int>
+ <int value="1" label="User Manager">
+ The user confirmed deletion of a profile from the User Manager.
+ </int>
+ <int value="2" label="User Manager Warning Shown">
+ The user clicked 'Remove this person' in the user manager and was shown the
+ profile deletion warning. No profile deletion action has been started yet.
+ </int>
+ <int value="3" label="Settings Page Warning Shown">
+ The user clicked 'Remove...' or the 'X' in the settings page and was shown
+ the profile deletion warning. No profile deletion action has been started
+ yet.
+ </int>
</enum>
<enum name="ProfileDesktopMenu" type="int">

Powered by Google App Engine
This is Rietveld 408576698