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 fb58dab42ad8c2c61a6ff867176ec19cedf2a58a..38abcd098f56201253853f1fe732ce7d6d3acd81 100644 |
--- a/components/autofill/content/renderer/autofill_agent.cc |
+++ b/components/autofill/content/renderer/autofill_agent.cc |
@@ -252,8 +252,11 @@ void AutofillAgent::DidChangeScrollOffset(WebLocalFrame*) { |
void AutofillAgent::didRequestAutocomplete( |
const WebFormElement& form, |
const blink::WebAutocompleteParams& details) { |
- // TODO(estade): honor |details|. |
+ didRequestAutocomplete(form); |
+} |
+void AutofillAgent::didRequestAutocomplete( |
+ const WebFormElement& form) { |
// Disallow the dialog over non-https or broken https, except when the |
// ignore SSL flag is passed. See http://crbug.com/272512. |
// TODO(palmer): this should be moved to the browser process after frames |