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

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

Issue 644053003: [Password Manager] Add UMA stats for custom passphrase users. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments Created 6 years, 2 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
Index: components/password_manager/core/browser/password_store_default.cc
diff --git a/components/password_manager/core/browser/password_store_default.cc b/components/password_manager/core/browser/password_store_default.cc
index 19a26a51e977beb4f51023a894bacbb16a710fe3..86f21c112e36c0182572dc4f2e68771234f7aeb3 100644
--- a/components/password_manager/core/browser/password_store_default.cc
+++ b/components/password_manager/core/browser/password_store_default.cc
@@ -26,9 +26,11 @@ PasswordStoreDefault::PasswordStoreDefault(
PasswordStoreDefault::~PasswordStoreDefault() {
}
-void PasswordStoreDefault::ReportMetricsImpl(const std::string& sync_username) {
+void PasswordStoreDefault::ReportMetricsImpl(
+ const std::string& sync_username,
+ bool custom_passphrase_sync_enabled) {
DCHECK(GetBackgroundTaskRunner()->BelongsToCurrentThread());
- login_db_->ReportMetrics(sync_username);
+ login_db_->ReportMetrics(sync_username, custom_passphrase_sync_enabled);
}
PasswordStoreChangeList PasswordStoreDefault::AddLoginImpl(

Powered by Google App Engine
This is Rietveld 408576698