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

Unified Diff: chrome/renderer/autofill/autofill_agent.cc

Issue 11539003: Pop up requestAutocomplete UI when autofill server hints chrome client that it is in a multipage au… (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Updated string. Pop the UI only on first page of the flow. Created 8 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: 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,
« chrome/browser/autofill/wallet_infobar_delegate.cc ('K') | « chrome/common/form_data.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698