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

Unified Diff: components/password_manager/core/browser/login_database.h

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/login_database.h
diff --git a/components/password_manager/core/browser/login_database.h b/components/password_manager/core/browser/login_database.h
index 0ea86e535f6cc9ee0b71b5d79db6ae80c524991f..89a04aa042715aa431512498fea3b844a60fccb5 100644
--- a/components/password_manager/core/browser/login_database.h
+++ b/components/password_manager/core/browser/login_database.h
@@ -18,6 +18,8 @@
namespace password_manager {
+class PasswordManagerClient;
+
// Interface to the database storage of login information, intended as a helper
// for PasswordStore on platforms that need internal storage of some or all of
// the login information.
@@ -31,7 +33,8 @@ class LoginDatabase {
bool Init(const base::FilePath& db_path);
// Reports usage metrics to UMA.
- void ReportMetrics(const std::string& sync_username);
+ void ReportMetrics(const std::string& sync_username,
+ bool custom_passphrase_sync_enabled);
// Adds |form| to the list of remembered password forms. Returns the list of
// changes applied ({}, {ADD}, {REMOVE, ADD}). If it returns {REMOVE, ADD}

Powered by Google App Engine
This is Rietveld 408576698