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

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

Issue 1823333003: [Password Manager] Human readable origins for blacklisted Android credentials (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@android_credentials
Patch Set: Created 4 years, 9 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.h
diff --git a/components/password_manager/core/browser/password_store.h b/components/password_manager/core/browser/password_store.h
index 84735bc821b2de6ddc3bc6220a49e89ec9dc377c..95987c26f07bc8f6a9763d4cb742d8a23da068d9 100644
--- a/components/password_manager/core/browser/password_store.h
+++ b/components/password_manager/core/browser/password_store.h
@@ -168,6 +168,11 @@ class PasswordStore : protected PasswordStoreSync,
// consumer is destroyed.
virtual void GetBlacklistLogins(PasswordStoreConsumer* consumer);
+ // Same as above, but also fills in |affiliated_web_realm| for Android
+ // credentials.
+ virtual void GetBlacklistLoginsWithAffiliatedRealms(
+ PasswordStoreConsumer* consumer);
+
// Reports usage metrics for the database. |sync_username| and
// |custom_passphrase_sync_enabled| determine some of the UMA stats that
// may be reported.
@@ -379,6 +384,11 @@ class PasswordStore : protected PasswordStoreSync,
// Finds all blacklist PasswordForms, and notifies the consumer.
void GetBlacklistLoginsImpl(scoped_ptr<GetLoginsRequest> request);
+ // Same as above, but also fills in |affiliated_web_realm| for Android
+ // credentials.
+ void GetBlacklistLoginsWithAffiliatedRealmsImpl(
+ scoped_ptr<GetLoginsRequest> request);
+
// Notifies |request| about the stats for |origin_domain|.
void NotifySiteStats(const GURL& origin_domain,
scoped_ptr<GetLoginsRequest> request);
« no previous file with comments | « chrome/browser/ui/passwords/password_manager_presenter.cc ('k') | components/password_manager/core/browser/password_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698