Chromium Code Reviews| Index: chrome/renderer/autofill/autofill_agent.cc |
| diff --git a/chrome/renderer/autofill/autofill_agent.cc b/chrome/renderer/autofill/autofill_agent.cc |
| index 945a7836a54a23a8dd22503f2ae46aa0d81876c1..4d90d4d625398fa04b428e4f1f6b3d3353609831 100644 |
| --- a/chrome/renderer/autofill/autofill_agent.cc |
| +++ b/chrome/renderer/autofill/autofill_agent.cc |
| @@ -706,6 +706,10 @@ void AutofillAgent::QueryAutofillSuggestions(const WebInputElement& element, |
| data_list_icons, |
| data_list_unique_ids)); |
| + // Additonally fill SSL Status in the formdata before messaging |
| + // QueryFormFieldAutofill to browser process. |
|
Ilya Sherman
2012/12/13 02:29:23
This comment is entirely redundant with the code.
Raman Kakilate
2012/12/13 21:34:34
Done.
|
| + form.ssl_status = render_view()->GetSSLStatusOfFrame( |
| + element.document().frame()); |
| Send(new AutofillHostMsg_QueryFormFieldAutofill(routing_id(), |
| autofill_query_id_, |
| form, |