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

Unified Diff: chrome/browser/password_manager/password_store_proxy_mac.cc

Issue 2899083004: Implement PasswordStore::GetLoginsForSameOrganizationName. (Closed)
Patch Set: Pacify Android/Win compilers. Add missing PwStore implementations on Mac. 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: chrome/browser/password_manager/password_store_proxy_mac.cc
diff --git a/chrome/browser/password_manager/password_store_proxy_mac.cc b/chrome/browser/password_manager/password_store_proxy_mac.cc
index 84e950a5c7d94eda6f39c6f0d52c9e744cd4e5da..1dac980db9ff9c057464ed8dab9b05c1470508c7 100644
--- a/chrome/browser/password_manager/password_store_proxy_mac.cc
+++ b/chrome/browser/password_manager/password_store_proxy_mac.cc
@@ -189,6 +189,12 @@ PasswordStoreProxyMac::FillMatchingLogins(const FormDigest& form) {
return GetBackend()->FillMatchingLogins(form);
}
+std::vector<std::unique_ptr<autofill::PasswordForm>>
+PasswordStoreProxyMac::FillLoginsForSameOrganizationName(
+ const std::string signon_realm) {
+ return GetBackend()->FillLoginsForSameOrganizationName(signon_realm);
+}
+
bool PasswordStoreProxyMac::FillAutofillableLogins(
std::vector<std::unique_ptr<autofill::PasswordForm>>* forms) {
return GetBackend()->FillAutofillableLogins(forms);

Powered by Google App Engine
This is Rietveld 408576698