remove transaction details from didRequestAutocomplete

see https://codereview.chromium.org/293853002/

BUG=354897

Review URL: https://codereview.chromium.org/299553002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272627 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/components/autofill/content/renderer/autofill_agent.cc b/components/autofill/content/renderer/autofill_agent.cc
index 0c8181e..3757d01 100644
--- a/components/autofill/content/renderer/autofill_agent.cc
+++ b/components/autofill/content/renderer/autofill_agent.cc
@@ -254,8 +254,11 @@
 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