| 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 "components/autofill/common/autocheckout_status.h" | 10 #include "components/autofill/common/autocheckout_status.h" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 IPC_STRUCT_TRAITS_MEMBER(label) | 41 IPC_STRUCT_TRAITS_MEMBER(label) |
| 42 IPC_STRUCT_TRAITS_MEMBER(name) | 42 IPC_STRUCT_TRAITS_MEMBER(name) |
| 43 IPC_STRUCT_TRAITS_MEMBER(value) | 43 IPC_STRUCT_TRAITS_MEMBER(value) |
| 44 IPC_STRUCT_TRAITS_MEMBER(form_control_type) | 44 IPC_STRUCT_TRAITS_MEMBER(form_control_type) |
| 45 IPC_STRUCT_TRAITS_MEMBER(autocomplete_attribute) | 45 IPC_STRUCT_TRAITS_MEMBER(autocomplete_attribute) |
| 46 IPC_STRUCT_TRAITS_MEMBER(max_length) | 46 IPC_STRUCT_TRAITS_MEMBER(max_length) |
| 47 IPC_STRUCT_TRAITS_MEMBER(is_autofilled) | 47 IPC_STRUCT_TRAITS_MEMBER(is_autofilled) |
| 48 IPC_STRUCT_TRAITS_MEMBER(is_checked) | 48 IPC_STRUCT_TRAITS_MEMBER(is_checked) |
| 49 IPC_STRUCT_TRAITS_MEMBER(is_checkable) | 49 IPC_STRUCT_TRAITS_MEMBER(is_checkable) |
| 50 IPC_STRUCT_TRAITS_MEMBER(is_focusable) | 50 IPC_STRUCT_TRAITS_MEMBER(is_focusable) |
| 51 IPC_STRUCT_TRAITS_MEMBER(is_rtl) |
| 51 IPC_STRUCT_TRAITS_MEMBER(should_autocomplete) | 52 IPC_STRUCT_TRAITS_MEMBER(should_autocomplete) |
| 52 IPC_STRUCT_TRAITS_MEMBER(option_values) | 53 IPC_STRUCT_TRAITS_MEMBER(option_values) |
| 53 IPC_STRUCT_TRAITS_MEMBER(option_contents) | 54 IPC_STRUCT_TRAITS_MEMBER(option_contents) |
| 54 IPC_STRUCT_TRAITS_END() | 55 IPC_STRUCT_TRAITS_END() |
| 55 | 56 |
| 56 IPC_STRUCT_TRAITS_BEGIN(autofill::FormFieldDataPredictions) | 57 IPC_STRUCT_TRAITS_BEGIN(autofill::FormFieldDataPredictions) |
| 57 IPC_STRUCT_TRAITS_MEMBER(field) | 58 IPC_STRUCT_TRAITS_MEMBER(field) |
| 58 IPC_STRUCT_TRAITS_MEMBER(signature) | 59 IPC_STRUCT_TRAITS_MEMBER(signature) |
| 59 IPC_STRUCT_TRAITS_MEMBER(heuristic_type) | 60 IPC_STRUCT_TRAITS_MEMBER(heuristic_type) |
| 60 IPC_STRUCT_TRAITS_MEMBER(server_type) | 61 IPC_STRUCT_TRAITS_MEMBER(server_type) |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 autofill::FormFieldData /* the form field */, | 290 autofill::FormFieldData /* the form field */, |
| 290 gfx::RectF /* input field bounds, window-relative */, | 291 gfx::RectF /* input field bounds, window-relative */, |
| 291 std::vector<base::string16> /* suggestions */) | 292 std::vector<base::string16> /* suggestions */) |
| 292 | 293 |
| 293 // Inform browser of data list values for the curent field. | 294 // Inform browser of data list values for the curent field. |
| 294 IPC_MESSAGE_ROUTED4(AutofillHostMsg_SetDataList, | 295 IPC_MESSAGE_ROUTED4(AutofillHostMsg_SetDataList, |
| 295 std::vector<base::string16> /* values */, | 296 std::vector<base::string16> /* values */, |
| 296 std::vector<base::string16> /* labels */, | 297 std::vector<base::string16> /* labels */, |
| 297 std::vector<base::string16> /* icons */, | 298 std::vector<base::string16> /* icons */, |
| 298 std::vector<int> /* unique ids */) | 299 std::vector<int> /* unique ids */) |
| OLD | NEW |