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

Unified Diff: components/autofill/content/common/autofill_messages.h

Issue 853523004: Autofill: Set requirements for number of recognized fields in an autofillable form (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 11 months 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: components/autofill/content/common/autofill_messages.h
diff --git a/components/autofill/content/common/autofill_messages.h b/components/autofill/content/common/autofill_messages.h
index f757f73517710c7e19c6441f4f71ea490054215d..4c7054fffbba7443b8c56811ff1732393ad80c2a 100644
--- a/components/autofill/content/common/autofill_messages.h
+++ b/components/autofill/content/common/autofill_messages.h
@@ -208,8 +208,10 @@ IPC_MESSAGE_ROUTED0(AutofillHostMsg_FirstUserGestureObserved)
// Notification that forms have been seen that are candidates for
// filling/submitting by the AutofillManager.
-IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormsSeen,
+// If there is no unowned form, the index is size of |forms|.
+IPC_MESSAGE_ROUTED3(AutofillHostMsg_FormsSeen,
std::vector<autofill::FormData> /* forms */,
+ size_t /* unowned_form_index */,
base::TimeTicks /* timestamp */)
// Notification that password forms have been seen that are candidates for

Powered by Google App Engine
This is Rietveld 408576698