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

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

Issue 1730313004: Remove PasswordStore::AuthorizationPromptPolicy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 57f6890b7057f2added04c38c2245fa9a79e08e5..9462d288f2517310cc124338da9c9bcdeb2bcaa8 100644
--- a/chrome/browser/password_manager/password_store_x.cc
+++ b/chrome/browser/password_manager/password_store_x.cc
@@ -178,8 +178,7 @@ void SortLoginsByOrigin(std::vector<autofill::PasswordForm*>* list) {
} // anonymous namespace
ScopedVector<autofill::PasswordForm> PasswordStoreX::FillMatchingLogins(
- const autofill::PasswordForm& form,
- AuthorizationPromptPolicy prompt_policy) {
+ const autofill::PasswordForm& form) {
CheckMigration();
ScopedVector<autofill::PasswordForm> matched_forms;
if (use_native_backend() && backend_->GetLogins(form, &matched_forms)) {
@@ -192,7 +191,7 @@ ScopedVector<autofill::PasswordForm> PasswordStoreX::FillMatchingLogins(
return matched_forms;
}
if (allow_default_store())
- return PasswordStoreDefault::FillMatchingLogins(form, prompt_policy);
+ return PasswordStoreDefault::FillMatchingLogins(form);
return ScopedVector<autofill::PasswordForm>();
}
« no previous file with comments | « chrome/browser/password_manager/password_store_x.h ('k') | chrome/browser/sync/test/integration/passwords_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698