| 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..fb3bf932b59e260ba428cfbbefe20696440de6d5 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);
|
|
|