Chromium Code Reviews| Index: tools/metrics/histograms/histograms.xml |
| diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml |
| index 8ff2149da299371b8e7d69b6f9ac6c98c35cbb70..9692b21a7a959cda3c43ceb657892b9f60d68ec4 100644 |
| --- a/tools/metrics/histograms/histograms.xml |
| +++ b/tools/metrics/histograms/histograms.xml |
| @@ -19052,6 +19052,39 @@ Therefore, the affected-histogram name has to have at least one dot in it. |
| </summary> |
| </histogram> |
| +<histogram name="PasswordManager.SyncAccountWithoutPasswordsTimesUsed"> |
| + <owner>gcasto@chromium.org</owner> |
| + <owner>vabr@chromium.org</owner> |
| + <summary> |
| + Number of times a users has used the password for their sync account. Note |
|
Ilya Sherman
2014/06/27 21:40:50
nit: "a users" -> "a user"
|
| + that this histogram only tracks users that are enrolled in sync, but not |
| + password sync. Recorded on browser startup. Any usage before M29 is not |
| + included. Any usage before M36 may not be properly accounted if it was on a |
| + different profile. |
|
Ilya Sherman
2014/06/27 21:40:49
So, this tracks the number of times the user has e
Garrett Casto
2014/06/27 22:33:20
By "using Chrome" are you talking about passwords
Ilya Sherman
2014/06/27 23:24:54
I mean that a user who just started using Chrome l
|
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="PasswordManager.SyncAccountWithPasswordsTimesUsed"> |
| + <owner>gcasto@chromium.org</owner> |
| + <owner>vabr@chromium.org</owner> |
| + <summary> |
| + Number of times a user has used the password for their sync account if they |
| + are syncing passwords. Recorded on browser startup. Any usage before M29 is |
| + not included. Usage before M36 may not be properly accounted if it was on a |
| + different profile. |
| + </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 if their |
| + synced password is saved or not. |
| + </summary> |
| +</histogram> |
| + |
| <histogram name="PasswordManager.TimesGeneratedPasswordUsed"> |
| <owner>dubroy@chromium.org</owner> |
| <owner>vabr@chromium.org</owner> |
| @@ -43255,6 +43288,20 @@ 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="User is not syncing."/> |
| + <int value="1" |
| + label="Not Syncing/Pasword saved. This value should not happen."/> |
| + <int value="2" label="Syncing without passwords/Sync password not saved"/> |
| + <int value="3" label="Syncing without passwords/Sync password saved"/> |
| + <int value="4" label="Syncing with passwords/Sync password not saved"/> |
| + <int value="5" label="Syncing with passwords/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'"/> |