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

Unified Diff: chrome/browser/password_manager/password_store_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_mac.cc
diff --git a/chrome/browser/password_manager/password_store_mac.cc b/chrome/browser/password_manager/password_store_mac.cc
index 4b185668ebe4b278afd9e47db8428e4fc7e7224e..ed98fb948c94441e50b50bf841433612f43615c3 100644
--- a/chrome/browser/password_manager/password_store_mac.cc
+++ b/chrome/browser/password_manager/password_store_mac.cc
@@ -1261,6 +1261,13 @@ std::vector<std::unique_ptr<PasswordForm>> PasswordStoreMac::FillMatchingLogins(
return matched_forms;
}
+std::vector<std::unique_ptr<autofill::PasswordForm>>
+PasswordStoreMac::FillLoginsForSameOrganizationName(
+ const std::string signon_realm) override {
+ // Not implemented.
+ return std::vector<std::unique_ptr<autofill::PasswordForm>>();
+}
+
bool PasswordStoreMac::FillAutofillableLogins(
std::vector<std::unique_ptr<PasswordForm>>* forms) {
DCHECK(GetBackgroundTaskRunner()->BelongsToCurrentThread());

Powered by Google App Engine
This is Rietveld 408576698