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

Unified Diff: components/password_manager/core/browser/password_manager.cc

Issue 1194863002: Fix the incorrect metric name in the Password Manager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/password_manager/core/browser/password_manager.cc
diff --git a/components/password_manager/core/browser/password_manager.cc b/components/password_manager/core/browser/password_manager.cc
index 56e90af5609efe269dfb8d385904d784268005e4..1837fcc99fb433e74b858164351f751f720e6715 100644
--- a/components/password_manager/core/browser/password_manager.cc
+++ b/components/password_manager/core/browser/password_manager.cc
@@ -685,8 +685,9 @@ void PasswordManager::Autofill(password_manager::PasswordManagerDriver* driver,
&fill_data);
if (logger)
logger->LogBoolean(Logger::STRING_WAIT_FOR_USERNAME, wait_for_username);
- UMA_HISTOGRAM_BOOLEAN("PasswordManager.OfferedToFillAndroidCredentials",
- ContainsAndroidCredentials(fill_data));
+ UMA_HISTOGRAM_BOOLEAN(
+ "PasswordManager.FillSuggestionsIncludeAndroidAppCredentials",
+ ContainsAndroidCredentials(fill_data));
driver->FillPasswordForm(fill_data);
break;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698