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

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

Issue 106053008: [Mac] Passwords: Don't always prompt to access passwords saved by other browsers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix yet another compile failure. Created 7 years 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_win.cc
diff --git a/chrome/browser/password_manager/password_store_win.cc b/chrome/browser/password_manager/password_store_win.cc
index d8606db5e36eb901af4d1ad9f9e1aa1bf98c33e5..0b34e6274f967d1ea79afd5a06253559e53b7642 100644
--- a/chrome/browser/password_manager/password_store_win.cc
+++ b/chrome/browser/password_manager/password_store_win.cc
@@ -196,9 +196,10 @@ void PasswordStoreWin::GetIE7LoginIfNecessary(
void PasswordStoreWin::GetLoginsImpl(
const PasswordForm& form,
+ AuthorizationPromptPolicy prompt_policy,
const ConsumerCallbackRunner& callback_runner) {
ConsumerCallbackRunner get_ie7_login =
base::Bind(&PasswordStoreWin::GetIE7LoginIfNecessary,
this, form, callback_runner);
- PasswordStoreDefault::GetLoginsImpl(form, get_ie7_login);
+ PasswordStoreDefault::GetLoginsImpl(form, prompt_policy, get_ie7_login);
}
« no previous file with comments | « chrome/browser/password_manager/password_store_win.h ('k') | chrome/browser/password_manager/password_store_win_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698