Chromium Code Reviews| 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 f9a99fe670dea7fccaf93328f7517227906990e1..f35b44ecfc9eace9473624de4a635c8a8a53050d 100644 |
| --- a/components/autofill/content/common/autofill_messages.h |
| +++ b/components/autofill/content/common/autofill_messages.h |
| @@ -195,9 +195,11 @@ IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsParsed, |
| std::vector<autofill::PasswordForm> /* forms */) |
| // Notification that initial layout has occurred and the following password |
| -// forms are visible on the page (e.g. not set to display:none.) |
| -IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsRendered, |
| - std::vector<autofill::PasswordForm> /* forms */) |
| +// forms are visible on the page (e.g. not set to display:none.), and whether |
| +// all frames in the page have been rendered. |
| +IPC_MESSAGE_ROUTED2(AutofillHostMsg_PasswordFormsRendered, |
| + std::vector<autofill::PasswordForm> /* forms */, |
| + bool /* true if all frames have been rendered */) |
|
Ilya Sherman
2014/06/20 20:31:45
nit: The comment should be a variable name, rather
|
| // Notification that this password form was submitted by the user. |
| IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormSubmitted, |