diff options
author | zysxqn@google.com <zysxqn@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-19 17:52:21 +0000 |
---|---|---|
committer | zysxqn@google.com <zysxqn@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-19 17:52:21 +0000 |
commit | c3ebaa9ca4b5288448d6d5e5dee08f2aa68c0a52 (patch) | |
tree | 9a5ac0b11bb1df472971de1915a155823b818ce4 /chrome/browser/password_manager/password_manager.h | |
parent | 8dfcccdcf5ead74a511c0139933bfc62a263f41c (diff) | |
download | chromium_src-c3ebaa9ca4b5288448d6d5e5dee08f2aa68c0a52.zip chromium_src-c3ebaa9ca4b5288448d6d5e5dee08f2aa68c0a52.tar.gz chromium_src-c3ebaa9ca4b5288448d6d5e5dee08f2aa68c0a52.tar.bz2 |
Check whether the users have blacklisted the site (i.e. "never save passwords") before we show the password generation bubble.
BUG=125413
TEST=PasswordGenerationTest,PasswordManagerTest,PasswordFormManagerTest
Review URL: https://chromiumcodereview.appspot.com/10545094
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@142987 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/password_manager/password_manager.h')
-rw-r--r-- | chrome/browser/password_manager/password_manager.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/password_manager/password_manager.h b/chrome/browser/password_manager/password_manager.h index afeab33..06d292c 100644 --- a/chrome/browser/password_manager/password_manager.h +++ b/chrome/browser/password_manager/password_manager.h @@ -45,10 +45,10 @@ class PasswordManager : public LoginModel, // Called by a PasswordFormManager when it decides a form can be autofilled // on the page. - void Autofill(const webkit::forms::PasswordForm& form_for_autofill, - const webkit::forms::PasswordFormMap& best_matches, - const webkit::forms::PasswordForm& preferred_match, - bool wait_for_username) const; + virtual void Autofill(const webkit::forms::PasswordForm& form_for_autofill, + const webkit::forms::PasswordFormMap& best_matches, + const webkit::forms::PasswordForm& preferred_match, + bool wait_for_username) const; // LoginModel implementation. virtual void SetObserver(LoginModelObserver* observer) OVERRIDE; |