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

Unified Diff: chrome/browser/password_manager/password_store_x.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_x.cc
diff --git a/chrome/browser/password_manager/password_store_x.cc b/chrome/browser/password_manager/password_store_x.cc
index 513a25f9d9b173767e56fdb672cf807db01567ff..b802e90086cad511f8f9d358bdc6011ec3161aab 100644
--- a/chrome/browser/password_manager/password_store_x.cc
+++ b/chrome/browser/password_manager/password_store_x.cc
@@ -207,6 +207,13 @@ std::vector<std::unique_ptr<PasswordForm>> PasswordStoreX::FillMatchingLogins(
return std::vector<std::unique_ptr<PasswordForm>>();
}
+std::vector<std::unique_ptr<PasswordForm>>
+PasswordStoreX::FillLoginsForSameOrganizationName(
+ const std::string& signon_realm) {
+ // Not available on X.
+ return std::vector<std::unique_ptr<PasswordForm>>();
+}
+
bool PasswordStoreX::FillAutofillableLogins(
std::vector<std::unique_ptr<PasswordForm>>* forms) {
CheckMigration();
« no previous file with comments | « chrome/browser/password_manager/password_store_x.h ('k') | components/password_manager/core/browser/login_database.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698