Index: components/password_manager/core/browser/password_store_sync.h |
diff --git a/components/password_manager/core/browser/password_store_sync.h b/components/password_manager/core/browser/password_store_sync.h |
index bed837a3752ce3a11754bbf252e508450ab4817b..33aa2170da4b1204af7d539cd46daeccb4d44d9a 100644 |
--- a/components/password_manager/core/browser/password_store_sync.h |
+++ b/components/password_manager/core/browser/password_store_sync.h |
@@ -16,11 +16,13 @@ namespace password_manager { |
// thread only. |
class PasswordStoreSync { |
public: |
- // Finds all non-blacklist PasswordForms, and fills the vector. |
+ // Overwrites |forms| with all stored non-blacklisted credentials. On success, |
+ // returns true, otherwise returns false and erases |forms|. |
virtual bool FillAutofillableLogins( |
ScopedVector<autofill::PasswordForm>* forms) = 0; |
- // Finds all blacklist PasswordForms, and fills the vector. |
+ // Overwrites |forms| with all stored blacklisted credentials. On success, |
+ // returns true, otherwise returns false and erases |forms|. |
virtual bool FillBlacklistLogins( |
ScopedVector<autofill::PasswordForm>* forms) = 0; |