| Index: chrome/browser/safe_browsing/chrome_password_protection_service.cc
|
| diff --git a/chrome/browser/safe_browsing/chrome_password_protection_service.cc b/chrome/browser/safe_browsing/chrome_password_protection_service.cc
|
| index fdb621c097a03b03a5c60efe9c35a99e39e250f9..866d8fdee8af2f70e28d955b34137460a1e4bb18 100644
|
| --- a/chrome/browser/safe_browsing/chrome_password_protection_service.cc
|
| +++ b/chrome/browser/safe_browsing/chrome_password_protection_service.cc
|
| @@ -55,8 +55,15 @@ ChromePasswordProtectionService::~ChromePasswordProtectionService() {
|
| if (content_settings()) {
|
| CleanUpExpiredVerdicts();
|
| UMA_HISTOGRAM_COUNTS_1000(
|
| - "PasswordProtection.NumberOfCachedVerdictBeforeShutdown",
|
| - GetStoredVerdictCount());
|
| + "PasswordProtection.NumberOfCachedVerdictBeforeShutdown."
|
| + "PasswordOnFocus",
|
| + GetStoredVerdictCount(
|
| + LoginReputationClientRequest::UNFAMILIAR_LOGIN_PAGE));
|
| + UMA_HISTOGRAM_COUNTS_1000(
|
| + "PasswordProtection.NumberOfCachedVerdictBeforeShutdown."
|
| + "ProtectedPasswordEntry",
|
| + GetStoredVerdictCount(
|
| + LoginReputationClientRequest::PASSWORD_REUSE_EVENT));
|
| }
|
| }
|
|
|
|
|