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

Unified Diff: components/autofill/content/renderer/autofill_agent.cc

Issue 773573004: Fill on account select in the password manager behind a flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Rebase on ToT Created 6 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: components/autofill/content/renderer/autofill_agent.cc
diff --git a/components/autofill/content/renderer/autofill_agent.cc b/components/autofill/content/renderer/autofill_agent.cc
index 8a9350e9304bc369045479377850335096a0421e..ade2d10f6bcea106c87f3e512d0e82b1a21a3973 100644
--- a/components/autofill/content/renderer/autofill_agent.cc
+++ b/components/autofill/content/renderer/autofill_agent.cc
@@ -242,7 +242,7 @@ void AutofillAgent::FocusedNodeChanged(const WebNode& node) {
const WebInputElement* element = toWebInputElement(&web_element);
if (!element || !element->isEnabled() || element->isReadOnly() ||
- !element->isTextField() || element->isPasswordField())
+ !element->isTextField())
return;
element_ = *element;
Ilya Sherman 2014/12/11 23:28:55 I honestly don't even remember why it's important
jww 2014/12/12 00:17:43 I think it's as simple as the focused node has cha
Ilya Sherman 2014/12/12 00:25:50 AcceptDataListSuggestion should only be called aft
jww 2014/12/12 00:54:55 My change doesn't touch the assignment of element_
Ilya Sherman 2014/12/12 01:56:02 I think you can still address my more narrow quest
jww 2014/12/12 02:05:49 Ah, got it. I misunderstood your request. Done.
@@ -610,7 +610,7 @@ void AutofillAgent::ShowSuggestions(const WebFormControlElement& element,
const WebInputElement* input_element = toWebInputElement(&element);
if (input_element) {
- if (!input_element->isTextField() || input_element->isPasswordField())
+ if (!input_element->isTextField())
Ilya Sherman 2014/12/11 23:28:55 I am concerned that without the isPasswordField()
jww 2014/12/12 00:17:43 Good point. I moved the guard further down, right
return;
if (!options.datalist_only && !input_element->suggestedValue().isEmpty())
return;

Powered by Google App Engine
This is Rietveld 408576698