| 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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 IPC_MESSAGE_ROUTED1(AutofillHostMsg_FormSubmitted, | 268 IPC_MESSAGE_ROUTED1(AutofillHostMsg_FormSubmitted, |
| 269 autofill::FormData /* form */) | 269 autofill::FormData /* form */) |
| 270 | 270 |
| 271 // Notification that a form field's value has changed. | 271 // Notification that a form field's value has changed. |
| 272 IPC_MESSAGE_ROUTED3(AutofillHostMsg_TextFieldDidChange, | 272 IPC_MESSAGE_ROUTED3(AutofillHostMsg_TextFieldDidChange, |
| 273 autofill::FormData /* the form */, | 273 autofill::FormData /* the form */, |
| 274 autofill::FormFieldData /* the form field */, | 274 autofill::FormFieldData /* the form field */, |
| 275 base::TimeTicks /* timestamp */) | 275 base::TimeTicks /* timestamp */) |
| 276 | 276 |
| 277 // Queries the browser for Autofill suggestions for a form input field. | 277 // Queries the browser for Autofill suggestions for a form input field. |
| 278 IPC_MESSAGE_ROUTED5(AutofillHostMsg_QueryFormFieldAutofill, | 278 IPC_MESSAGE_ROUTED4(AutofillHostMsg_QueryFormFieldAutofill, |
| 279 int /* id of this message */, | 279 int /* id of this message */, |
| 280 autofill::FormData /* the form */, | 280 autofill::FormData /* the form */, |
| 281 autofill::FormFieldData /* the form field */, | 281 autofill::FormFieldData /* the form field */, |
| 282 gfx::RectF /* input field bounds, window-relative */, | 282 gfx::RectF /* input field bounds, window-relative */) |
| 283 bool /* display warning if autofill disabled */) | |
| 284 | 283 |
| 285 // Sent when a form is previewed with Autofill suggestions. | 284 // Sent when a form is previewed with Autofill suggestions. |
| 286 IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidPreviewAutofillFormData) | 285 IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidPreviewAutofillFormData) |
| 287 | 286 |
| 288 // Sent immediately after the renderer receives a ping IPC. | 287 // Sent immediately after the renderer receives a ping IPC. |
| 289 IPC_MESSAGE_ROUTED0(AutofillHostMsg_PingAck) | 288 IPC_MESSAGE_ROUTED0(AutofillHostMsg_PingAck) |
| 290 | 289 |
| 291 // Sent when a form is filled with Autofill suggestions. | 290 // Sent when a form is filled with Autofill suggestions. |
| 292 IPC_MESSAGE_ROUTED1(AutofillHostMsg_DidFillAutofillFormData, | 291 IPC_MESSAGE_ROUTED1(AutofillHostMsg_DidFillAutofillFormData, |
| 293 base::TimeTicks /* timestamp */) | 292 base::TimeTicks /* timestamp */) |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 int /* key */, | 327 int /* key */, |
| 329 base::i18n::TextDirection /* text_direction */, | 328 base::i18n::TextDirection /* text_direction */, |
| 330 base::string16 /* username typed by user */, | 329 base::string16 /* username typed by user */, |
| 331 int /* options bitmask of autofill::ShowPasswordSuggestionsOptions */, | 330 int /* options bitmask of autofill::ShowPasswordSuggestionsOptions */, |
| 332 gfx::RectF /* input field bounds, window-relative */) | 331 gfx::RectF /* input field bounds, window-relative */) |
| 333 | 332 |
| 334 // Inform browser of data list values for the curent field. | 333 // Inform browser of data list values for the curent field. |
| 335 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, | 334 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, |
| 336 std::vector<base::string16> /* values */, | 335 std::vector<base::string16> /* values */, |
| 337 std::vector<base::string16> /* labels */) | 336 std::vector<base::string16> /* labels */) |
| OLD | NEW |