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

Unified Diff: chrome/browser/password_manager/password_store_proxy_mac.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_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 3a9fb69bbd580272d994349d7ff7c31520fada53..2241d7c62fb8172a2a67a3431e43c11b9d6c3602 100644
--- a/chrome/browser/password_manager/password_store_proxy_mac.cc
+++ b/chrome/browser/password_manager/password_store_proxy_mac.cc
@@ -197,9 +197,8 @@ bool PasswordStoreProxyMac::RemoveStatisticsCreatedBetweenImpl(
}
ScopedVector<autofill::PasswordForm> PasswordStoreProxyMac::FillMatchingLogins(
- const autofill::PasswordForm& form,
- AuthorizationPromptPolicy prompt_policy) {
- return GetBackend()->FillMatchingLogins(form, prompt_policy);
+ const autofill::PasswordForm& form) {
+ return GetBackend()->FillMatchingLogins(form);
}
bool PasswordStoreProxyMac::FillAutofillableLogins(

Powered by Google App Engine
This is Rietveld 408576698