| 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 d875a51baeb605e74390dc432f67867f03ffaff9..b4125272ec4c15027d2a7118a44e08d468d6b917 100644
|
| --- a/components/password_manager/core/browser/password_store.h
|
| +++ b/components/password_manager/core/browser/password_store.h
|
| @@ -247,13 +247,6 @@ class PasswordStore : protected PasswordStoreSync,
|
| const autofill::PasswordForm& form,
|
| AuthorizationPromptPolicy prompt_policy) = 0;
|
|
|
| - // Finds all non-blacklist PasswordForms, and notifies the consumer.
|
| - virtual void GetAutofillableLoginsImpl(
|
| - scoped_ptr<GetLoginsRequest> request) = 0;
|
| -
|
| - // Finds all blacklist PasswordForms, and notifies the consumer.
|
| - virtual void GetBlacklistLoginsImpl(scoped_ptr<GetLoginsRequest> request) = 0;
|
| -
|
| // Synchronous implementation for manipulating with statistics.
|
| virtual void AddSiteStatsImpl(const InteractionsStats& stats) = 0;
|
| virtual void RemoveSiteStatsImpl(const GURL& origin_domain) = 0;
|
| @@ -316,6 +309,12 @@ class PasswordStore : protected PasswordStoreSync,
|
| void RemoveLoginsSyncedBetweenInternal(base::Time delete_begin,
|
| base::Time delete_end);
|
|
|
| + // Finds all non-blacklist PasswordForms, and notifies the consumer.
|
| + void GetAutofillableLoginsImpl(scoped_ptr<GetLoginsRequest> request);
|
| +
|
| + // Finds all blacklist PasswordForms, and notifies the consumer.
|
| + void GetBlacklistLoginsImpl(scoped_ptr<GetLoginsRequest> request);
|
| +
|
| // Notifies |request| about the stats for |origin_domain|.
|
| void NotifySiteStats(const GURL& origin_domain,
|
| scoped_ptr<GetLoginsRequest> request);
|
|
|