commit | 304130fa6522b6175f35ce51fe3ae8e91abad96b | [log] [tgz] |
---|---|---|
author | [email protected] <[email protected]@0039d316-1c4b-4281-b951-d872f2087c98> | Fri May 23 22:58:55 2014 |
committer | [email protected] <[email protected]@0039d316-1c4b-4281-b951-d872f2087c98> | Fri May 23 22:58:55 2014 |
tree | 7b086079d181866554adf4c933cc2b4e587119e2 | |
parent | 29aa3d51fc30264cf20dc9e047733c5689776160 [diff] [blame] |
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