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

Unified Diff: chrome/renderer/password_autocomplete_manager.cc

Issue 6280003: Password Autofill disables auto-completed textfield (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 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
« no previous file with comments | « chrome/renderer/password_autocomplete_manager.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/password_autocomplete_manager.cc
diff --git a/chrome/renderer/password_autocomplete_manager.cc b/chrome/renderer/password_autocomplete_manager.cc
index a18f9b86cfb02fec1df601345aea118641cad516..2c59b7d49a49f298773168b6212bd7b1800abcd1 100644
--- a/chrome/renderer/password_autocomplete_manager.cc
+++ b/chrome/renderer/password_autocomplete_manager.cc
@@ -241,7 +241,10 @@ bool PasswordAutocompleteManager::TextFieldDidEndEditing(
return false;
WebKit::WebInputElement username = element; // We need a non-const.
- FillUserNameAndPassword(&username, &password, fill_data, true);
+
+ // Do not set selection when ending an editing session, otherwise it can
+ // mess with focus.
+ FillUserNameAndPassword(&username, &password, fill_data, true, false);
return true;
}
@@ -317,7 +320,7 @@ bool PasswordAutocompleteManager::FillPassword(
WebKit::WebInputElement password = iter->second.password_field;
WebKit::WebInputElement non_const_user_input(user_input);
return FillUserNameAndPassword(&non_const_user_input, &password,
- fill_data, true);
+ fill_data, true, true);
}
void PasswordAutocompleteManager::PerformInlineAutocomplete(
@@ -341,7 +344,7 @@ void PasswordAutocompleteManager::PerformInlineAutocomplete(
ShowSuggestionPopup(fill_data, username);
// Fill the user and password field with the most relevant match.
- FillUserNameAndPassword(&username, &password, fill_data, false);
+ FillUserNameAndPassword(&username, &password, fill_data, false, true);
}
void PasswordAutocompleteManager::SendPasswordForms(WebKit::WebFrame* frame,
@@ -436,7 +439,8 @@ bool PasswordAutocompleteManager::FillUserNameAndPassword(
WebKit::WebInputElement* username_element,
WebKit::WebInputElement* password_element,
const webkit_glue::PasswordFormFillData& fill_data,
- bool exact_username_match) {
+ bool exact_username_match,
+ bool set_selection) {
string16 current_username = username_element->value();
// username and password will contain the match found if any.
string16 username;
@@ -465,8 +469,12 @@ bool PasswordAutocompleteManager::FillUserNameAndPassword(
// Input matches the username, fill in required values.
username_element->setValue(username);
- username_element->setSelectionRange(current_username.length(),
- username.length());
+
+ if (set_selection) {
+ username_element->setSelectionRange(current_username.length(),
+ username.length());
+ }
+
SetElementAutofilled(username_element, true);
if (IsElementEditable(*password_element))
password_element->setValue(password);
« no previous file with comments | « chrome/renderer/password_autocomplete_manager.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698