OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Multiply-included message file, hence no include guard. | 5 // Multiply-included message file, hence no include guard. |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/time/time.h" | 9 #include "base/time/time.h" |
10 #include "components/autofill/core/common/autocheckout_status.h" | 10 #include "components/autofill/core/common/autocheckout_status.h" |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 // Notification that password forms have been seen that are candidates for | 198 // Notification that password forms have been seen that are candidates for |
199 // filling/submitting by the password manager. | 199 // filling/submitting by the password manager. |
200 IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsParsed, | 200 IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsParsed, |
201 std::vector<content::PasswordForm> /* forms */) | 201 std::vector<content::PasswordForm> /* forms */) |
202 | 202 |
203 // Notification that initial layout has occurred and the following password | 203 // Notification that initial layout has occurred and the following password |
204 // forms are visible on the page (e.g. not set to display:none.) | 204 // forms are visible on the page (e.g. not set to display:none.) |
205 IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsRendered, | 205 IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsRendered, |
206 std::vector<content::PasswordForm> /* forms */) | 206 std::vector<content::PasswordForm> /* forms */) |
207 | 207 |
| 208 // Notification that this password form was submitted by the user. |
| 209 IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormSubmitted, |
| 210 content::PasswordForm /* form */) |
| 211 |
208 // Notification that a form has been submitted. The user hit the button. | 212 // Notification that a form has been submitted. The user hit the button. |
209 IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormSubmitted, | 213 IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormSubmitted, |
210 autofill::FormData /* form */, | 214 autofill::FormData /* form */, |
211 base::TimeTicks /* timestamp */) | 215 base::TimeTicks /* timestamp */) |
212 | 216 |
213 // Notification that a form field's value has changed. | 217 // Notification that a form field's value has changed. |
214 IPC_MESSAGE_ROUTED3(AutofillHostMsg_TextFieldDidChange, | 218 IPC_MESSAGE_ROUTED3(AutofillHostMsg_TextFieldDidChange, |
215 autofill::FormData /* the form */, | 219 autofill::FormData /* the form */, |
216 autofill::FormFieldData /* the form field */, | 220 autofill::FormFieldData /* the form field */, |
217 base::TimeTicks /* timestamp */) | 221 base::TimeTicks /* timestamp */) |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
291 IPC_MESSAGE_ROUTED4(AutofillHostMsg_ShowPasswordSuggestions, | 295 IPC_MESSAGE_ROUTED4(AutofillHostMsg_ShowPasswordSuggestions, |
292 autofill::FormFieldData /* the form field */, | 296 autofill::FormFieldData /* the form field */, |
293 gfx::RectF /* input field bounds, window-relative */, | 297 gfx::RectF /* input field bounds, window-relative */, |
294 std::vector<base::string16> /* suggestions */, | 298 std::vector<base::string16> /* suggestions */, |
295 std::vector<base::string16> /* realms */) | 299 std::vector<base::string16> /* realms */) |
296 | 300 |
297 // Inform browser of data list values for the curent field. | 301 // Inform browser of data list values for the curent field. |
298 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, | 302 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, |
299 std::vector<base::string16> /* values */, | 303 std::vector<base::string16> /* values */, |
300 std::vector<base::string16> /* labels */) | 304 std::vector<base::string16> /* labels */) |
OLD | NEW |