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

Unified Diff: chrome/browser/password_manager/password_form_manager.h

Issue 103503002: Ignore autocomplete='off' for usernames and passwords. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Nits from gcasto 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
« no previous file with comments | « no previous file | chrome/browser/password_manager/password_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/password_manager/password_form_manager.h
diff --git a/chrome/browser/password_manager/password_form_manager.h b/chrome/browser/password_manager/password_form_manager.h
index 09b75fe0526f8f220af0933f1ea2e3a3fa9f9393..53fbe747f4798e22830b746f81e4d63aec3d5356 100644
--- a/chrome/browser/password_manager/password_form_manager.h
+++ b/chrome/browser/password_manager/password_form_manager.h
@@ -152,17 +152,14 @@ class PasswordFormManager : public PasswordStoreConsumer {
private:
friend class PasswordFormManagerTest;
- // ManagerAction - What does the manager do with this form? Either it
- // fills it, or it doesn't. If it doesn't fill it, that's either
- // because it has no match, or it is blacklisted, or it is disabled
- // via the AUTOCOMPLETE=off attribute. Note that if we don't have
- // an exact match, we still provide candidates that the user may
- // end up choosing.
+ // ManagerAction - What does the manager do with this form? Either it fills
+ // it, or it doesn't. If it doesn't fill it, that's either because it has no
+ // match or it is blacklisted. Note that if we don't have an exact match, we
+ // still provide candidates that the user may end up choosing.
enum ManagerAction {
kManagerActionNone = 0,
kManagerActionAutofilled,
kManagerActionBlacklisted,
- kManagerActionDisabled,
kManagerActionMax
};
« no previous file with comments | « no previous file | chrome/browser/password_manager/password_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698