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

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

Issue 2899083004: Implement PasswordStore::GetLoginsForSameOrganizationName. (Closed)
Patch Set: Rebase. Created 3 years, 7 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/mock_password_store.h
diff --git a/components/password_manager/core/browser/mock_password_store.h b/components/password_manager/core/browser/mock_password_store.h
index afc92cc202ee31243f6df03ea58e5796bfc3ee98..81c5a25a514a7de72bfb57914a097077cb63c20b 100644
--- a/components/password_manager/core/browser/mock_password_store.h
+++ b/components/password_manager/core/browser/mock_password_store.h
@@ -60,6 +60,10 @@ class MockPasswordStore : public PasswordStore {
const PasswordStore::FormDigest& form) override {
return std::vector<std::unique_ptr<autofill::PasswordForm>>();
}
+ std::vector<std::unique_ptr<autofill::PasswordForm>>
+ FillLoginsForSameOrganizationName(const std::string& signon_realm) override {
+ return std::vector<std::unique_ptr<autofill::PasswordForm>>();
+ }
MOCK_METHOD1(FillAutofillableLogins,
bool(std::vector<std::unique_ptr<autofill::PasswordForm>>*));
MOCK_METHOD1(FillBlacklistLogins,

Powered by Google App Engine
This is Rietveld 408576698