| 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 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
| (...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 autofill::FormData /* the form */, | 275 autofill::FormData /* the form */, |
| 276 autofill::FormFieldData /* the form field */, | 276 autofill::FormFieldData /* the form field */, |
| 277 gfx::RectF /* input field bounds, window-relative */) | 277 gfx::RectF /* input field bounds, window-relative */) |
| 278 | 278 |
| 279 // Sent when a form is previewed with Autofill suggestions. | 279 // Sent when a form is previewed with Autofill suggestions. |
| 280 IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidPreviewAutofillFormData) | 280 IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidPreviewAutofillFormData) |
| 281 | 281 |
| 282 // Sent immediately after the renderer receives a ping IPC. | 282 // Sent immediately after the renderer receives a ping IPC. |
| 283 IPC_MESSAGE_ROUTED0(AutofillHostMsg_PingAck) | 283 IPC_MESSAGE_ROUTED0(AutofillHostMsg_PingAck) |
| 284 | 284 |
| 285 // Sent when the current form is no longer focused. |
| 286 IPC_MESSAGE_ROUTED0(AutofillHostMsg_FocusNoLongerOnForm) |
| 287 |
| 285 // Sent when a form is filled with Autofill suggestions. | 288 // Sent when a form is filled with Autofill suggestions. |
| 286 IPC_MESSAGE_ROUTED1(AutofillHostMsg_DidFillAutofillFormData, | 289 IPC_MESSAGE_ROUTED2(AutofillHostMsg_DidFillAutofillFormData, |
| 290 autofill::FormData /* the form */, |
| 287 base::TimeTicks /* timestamp */) | 291 base::TimeTicks /* timestamp */) |
| 288 | 292 |
| 289 // Sent when a form receives a request to do interactive autocomplete. | 293 // Sent when a form receives a request to do interactive autocomplete. |
| 290 IPC_MESSAGE_ROUTED1(AutofillHostMsg_RequestAutocomplete, | 294 IPC_MESSAGE_ROUTED1(AutofillHostMsg_RequestAutocomplete, |
| 291 autofill::FormData /* form_data */) | 295 autofill::FormData /* form_data */) |
| 292 | 296 |
| 293 // Send when a text field is done editing. | 297 // Send when a text field is done editing. |
| 294 IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidEndTextFieldEditing) | 298 IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidEndTextFieldEditing) |
| 295 | 299 |
| 296 // Instructs the browser to hide the Autofill popup if it is open. | 300 // Instructs the browser to hide the Autofill popup if it is open. |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 // Inform browser of data list values for the curent field. | 341 // Inform browser of data list values for the curent field. |
| 338 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, | 342 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, |
| 339 std::vector<base::string16> /* values */, | 343 std::vector<base::string16> /* values */, |
| 340 std::vector<base::string16> /* labels */) | 344 std::vector<base::string16> /* labels */) |
| 341 | 345 |
| 342 // Inform the browser which password form is currently focused, as a response | 346 // Inform the browser which password form is currently focused, as a response |
| 343 // to the |AutofillMsg_FindFocusedPasswordForm| request. If no password form | 347 // to the |AutofillMsg_FindFocusedPasswordForm| request. If no password form |
| 344 // is focused, the response will contain an empty |autofill::PasswordForm|. | 348 // is focused, the response will contain an empty |autofill::PasswordForm|. |
| 345 IPC_MESSAGE_ROUTED1(AutofillHostMsg_FocusedPasswordFormFound, | 349 IPC_MESSAGE_ROUTED1(AutofillHostMsg_FocusedPasswordFormFound, |
| 346 autofill::PasswordForm) | 350 autofill::PasswordForm) |
| OLD | NEW |