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

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

Issue 19775014: [Passwords, Mac] Don't always prompt to access passwords saved by other browsers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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_default.cc
diff --git a/chrome/browser/password_manager/password_store_default.cc b/chrome/browser/password_manager/password_store_default.cc
index c5be4c9aa40c2ab28282e0ffb9af0d8260bffe3e..bca85efdae03a0a8342ca8b75f57020c169d6f13 100644
--- a/chrome/browser/password_manager/password_store_default.cc
+++ b/chrome/browser/password_manager/password_store_default.cc
@@ -95,7 +95,8 @@ void PasswordStoreDefault::RemoveLoginsCreatedBetweenImpl(
void PasswordStoreDefault::GetLoginsImpl(
const content::PasswordForm& form,
- const ConsumerCallbackRunner& callback_runner) {
+ const ConsumerCallbackRunner& callback_runner,
+ AuthorizationPromptPermission permission_to_prompt) {
std::vector<PasswordForm*> matched_forms;
login_db_->GetLogins(form, &matched_forms);
callback_runner.Run(matched_forms);

Powered by Google App Engine
This is Rietveld 408576698