| Index: chrome/common/autofill_messages.h
|
| diff --git a/chrome/common/autofill_messages.h b/chrome/common/autofill_messages.h
|
| index b60c868fbf00cb59a43da3bd64c7c386d6635ef2..6eae990854783e625b40c4461389e865b8720272 100644
|
| --- a/chrome/common/autofill_messages.h
|
| +++ b/chrome/common/autofill_messages.h
|
| @@ -134,9 +134,13 @@ IPC_MESSAGE_ROUTED1(AutofillMsg_AcceptPasswordAutofillSuggestion,
|
| IPC_MESSAGE_ROUTED1(AutofillMsg_FormNotBlacklisted,
|
| content::PasswordForm /* form checked */)
|
|
|
| -// Sent when interactive autocomplete finishes.
|
| -IPC_MESSAGE_ROUTED1(AutofillMsg_RequestAutocompleteFinished,
|
| - WebKit::WebFormElement::AutocompleteResult /* result */)
|
| +// Sent when interactive autocomplete succeeds. Autofills parts of the form
|
| +// that requested the autocomplete with values input by the user.
|
| +IPC_MESSAGE_ROUTED1(AutofillMsg_RequestAutocompleteSuccess,
|
| + FormData /* form_data */)
|
| +
|
| +// Sent when interactive autocomplete fails for any number of reasons.
|
| +IPC_MESSAGE_ROUTED0(AutofillMsg_RequestAutocompleteError);
|
|
|
| // Autofill messages sent from the renderer to the browser.
|
|
|
|
|