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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 IPC_STRUCT_TRAITS_MEMBER(placeholder) | 51 IPC_STRUCT_TRAITS_MEMBER(placeholder) |
52 IPC_STRUCT_TRAITS_MEMBER(role) | 52 IPC_STRUCT_TRAITS_MEMBER(role) |
53 IPC_STRUCT_TRAITS_MEMBER(max_length) | 53 IPC_STRUCT_TRAITS_MEMBER(max_length) |
54 IPC_STRUCT_TRAITS_MEMBER(is_autofilled) | 54 IPC_STRUCT_TRAITS_MEMBER(is_autofilled) |
55 IPC_STRUCT_TRAITS_MEMBER(check_status) | 55 IPC_STRUCT_TRAITS_MEMBER(check_status) |
56 IPC_STRUCT_TRAITS_MEMBER(is_focusable) | 56 IPC_STRUCT_TRAITS_MEMBER(is_focusable) |
57 IPC_STRUCT_TRAITS_MEMBER(should_autocomplete) | 57 IPC_STRUCT_TRAITS_MEMBER(should_autocomplete) |
58 IPC_STRUCT_TRAITS_MEMBER(text_direction) | 58 IPC_STRUCT_TRAITS_MEMBER(text_direction) |
59 IPC_STRUCT_TRAITS_MEMBER(option_values) | 59 IPC_STRUCT_TRAITS_MEMBER(option_values) |
60 IPC_STRUCT_TRAITS_MEMBER(option_contents) | 60 IPC_STRUCT_TRAITS_MEMBER(option_contents) |
| 61 IPC_STRUCT_TRAITS_MEMBER(css_classes) |
61 IPC_STRUCT_TRAITS_END() | 62 IPC_STRUCT_TRAITS_END() |
62 | 63 |
63 IPC_STRUCT_TRAITS_BEGIN(autofill::FormFieldDataPredictions) | 64 IPC_STRUCT_TRAITS_BEGIN(autofill::FormFieldDataPredictions) |
64 IPC_STRUCT_TRAITS_MEMBER(field) | 65 IPC_STRUCT_TRAITS_MEMBER(field) |
65 IPC_STRUCT_TRAITS_MEMBER(signature) | 66 IPC_STRUCT_TRAITS_MEMBER(signature) |
66 IPC_STRUCT_TRAITS_MEMBER(heuristic_type) | 67 IPC_STRUCT_TRAITS_MEMBER(heuristic_type) |
67 IPC_STRUCT_TRAITS_MEMBER(server_type) | 68 IPC_STRUCT_TRAITS_MEMBER(server_type) |
68 IPC_STRUCT_TRAITS_MEMBER(overall_type) | 69 IPC_STRUCT_TRAITS_MEMBER(overall_type) |
69 IPC_STRUCT_TRAITS_MEMBER(parseable_name) | 70 IPC_STRUCT_TRAITS_MEMBER(parseable_name) |
70 IPC_STRUCT_TRAITS_END() | 71 IPC_STRUCT_TRAITS_END() |
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 // Inform browser of data list values for the curent field. | 357 // Inform browser of data list values for the curent field. |
357 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, | 358 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, |
358 std::vector<base::string16> /* values */, | 359 std::vector<base::string16> /* values */, |
359 std::vector<base::string16> /* labels */) | 360 std::vector<base::string16> /* labels */) |
360 | 361 |
361 // Inform the browser which password form is currently focused, as a response | 362 // Inform the browser which password form is currently focused, as a response |
362 // to the |AutofillMsg_FindFocusedPasswordForm| request. If no password form | 363 // to the |AutofillMsg_FindFocusedPasswordForm| request. If no password form |
363 // is focused, the response will contain an empty |autofill::PasswordForm|. | 364 // is focused, the response will contain an empty |autofill::PasswordForm|. |
364 IPC_MESSAGE_ROUTED1(AutofillHostMsg_FocusedPasswordFormFound, | 365 IPC_MESSAGE_ROUTED1(AutofillHostMsg_FocusedPasswordFormFound, |
365 autofill::PasswordForm) | 366 autofill::PasswordForm) |
OLD | NEW |