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

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

Issue 355143006: [Password Manager] Add UMA stats to track interaction with synced accounts. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Typo Created 6 years, 5 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 | « tools/metrics/actions/actions.xml ('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 b7b146eba4565f1b0f42e6b0ef26e0f562119066..36ac58175eb3d7bb4a0516beca3d321f935414b6 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -19324,6 +19324,16 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="PasswordManager.SyncingAccountState"
+ enum="PasswordManagerSyncingAccountState">
+ <owner>gcasto@chromium.org</owner>
+ <owner>vabr@chromium.org</owner>
+ <summary>
+ Information about the user's current sync status crossed with whether their
+ synced password is saved.
+ </summary>
+</histogram>
+
<histogram name="PasswordManager.TimesGeneratedPasswordUsed">
<owner>dubroy@chromium.org</owner>
<owner>vabr@chromium.org</owner>
@@ -43816,6 +43826,18 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="2" label="Match"/>
</enum>
+<enum name="PasswordManagerSyncingAccountState" type="int">
+ <summary>
+ The value is a combination of the current sync state and if the user has
+ their sync password saved.
+ </summary>
+ <int value="0" label="Not Syncing/Sync password not saved"/>
+ <int value="1"
+ label="Not Syncing/Sync pasword saved. This value should not happen."/>
+ <int value="2" label="Syncing/Sync password not saved"/>
+ <int value="3" label="Syncing/Sync password saved"/>
+</enum>
+
<enum name="PasswordManagerUIDismissalReason" type="int">
<int value="0" label="Bubble lost focus / No infobar interaction"/>
<int value="1" label="Clicked 'Save'"/>
« no previous file with comments | « tools/metrics/actions/actions.xml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698