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

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

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: 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);
« no previous file with comments | « chrome/browser/password_manager/password_store_proxy_mac.h ('k') | chrome/browser/password_manager/password_store_x.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698