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

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: Address comments 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 bc2e5afbd9eed2a91820140f2e533efdb5ede16d..37be5b0729c183b3d6fe53799b30e64b8a882b84 100644
--- a/components/autofill/content/common/autofill_messages.h
+++ b/components/autofill/content/common/autofill_messages.h
@@ -205,8 +205,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