| 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);
|
|
|