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

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

Issue 1200603003: Integrate PasswordStoreProxyMac instead of PasswordStoreMac. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments Created 5 years, 6 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 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);

Powered by Google App Engine
This is Rietveld 408576698