OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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.h" | 9 #include "base/time.h" |
10 #include "chrome/common/common_param_traits_macros.h" | 10 #include "chrome/common/common_param_traits_macros.h" |
(...skipping 11 matching lines...) Expand all Loading... |
22 #define IPC_MESSAGE_START AutofillMsgStart | 22 #define IPC_MESSAGE_START AutofillMsgStart |
23 | 23 |
24 IPC_STRUCT_TRAITS_BEGIN(FormFieldData) | 24 IPC_STRUCT_TRAITS_BEGIN(FormFieldData) |
25 IPC_STRUCT_TRAITS_MEMBER(label) | 25 IPC_STRUCT_TRAITS_MEMBER(label) |
26 IPC_STRUCT_TRAITS_MEMBER(name) | 26 IPC_STRUCT_TRAITS_MEMBER(name) |
27 IPC_STRUCT_TRAITS_MEMBER(value) | 27 IPC_STRUCT_TRAITS_MEMBER(value) |
28 IPC_STRUCT_TRAITS_MEMBER(form_control_type) | 28 IPC_STRUCT_TRAITS_MEMBER(form_control_type) |
29 IPC_STRUCT_TRAITS_MEMBER(autocomplete_attribute) | 29 IPC_STRUCT_TRAITS_MEMBER(autocomplete_attribute) |
30 IPC_STRUCT_TRAITS_MEMBER(max_length) | 30 IPC_STRUCT_TRAITS_MEMBER(max_length) |
31 IPC_STRUCT_TRAITS_MEMBER(is_autofilled) | 31 IPC_STRUCT_TRAITS_MEMBER(is_autofilled) |
| 32 IPC_STRUCT_TRAITS_MEMBER(is_checked) |
| 33 IPC_STRUCT_TRAITS_MEMBER(is_checkable) |
32 IPC_STRUCT_TRAITS_MEMBER(is_focusable) | 34 IPC_STRUCT_TRAITS_MEMBER(is_focusable) |
33 IPC_STRUCT_TRAITS_MEMBER(should_autocomplete) | 35 IPC_STRUCT_TRAITS_MEMBER(should_autocomplete) |
34 IPC_STRUCT_TRAITS_MEMBER(option_values) | 36 IPC_STRUCT_TRAITS_MEMBER(option_values) |
35 IPC_STRUCT_TRAITS_MEMBER(option_contents) | 37 IPC_STRUCT_TRAITS_MEMBER(option_contents) |
36 IPC_STRUCT_TRAITS_END() | 38 IPC_STRUCT_TRAITS_END() |
37 | 39 |
38 IPC_STRUCT_TRAITS_BEGIN(FormFieldDataPredictions) | 40 IPC_STRUCT_TRAITS_BEGIN(FormFieldDataPredictions) |
39 IPC_STRUCT_TRAITS_MEMBER(field) | 41 IPC_STRUCT_TRAITS_MEMBER(field) |
40 IPC_STRUCT_TRAITS_MEMBER(signature) | 42 IPC_STRUCT_TRAITS_MEMBER(signature) |
41 IPC_STRUCT_TRAITS_MEMBER(heuristic_type) | 43 IPC_STRUCT_TRAITS_MEMBER(heuristic_type) |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 FormFieldData /* the form field */, | 234 FormFieldData /* the form field */, |
233 gfx::Rect /* input field bounds, window-relative */, | 235 gfx::Rect /* input field bounds, window-relative */, |
234 std::vector<string16> /* suggestions */) | 236 std::vector<string16> /* suggestions */) |
235 | 237 |
236 // Inform browser of data list values for the curent field. | 238 // Inform browser of data list values for the curent field. |
237 IPC_MESSAGE_ROUTED4(AutofillHostMsg_SetDataList, | 239 IPC_MESSAGE_ROUTED4(AutofillHostMsg_SetDataList, |
238 std::vector<string16> /* values */, | 240 std::vector<string16> /* values */, |
239 std::vector<string16> /* labels */, | 241 std::vector<string16> /* labels */, |
240 std::vector<string16> /* icons */, | 242 std::vector<string16> /* icons */, |
241 std::vector<int> /* unique ids */) | 243 std::vector<int> /* unique ids */) |
OLD | NEW |