| 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 // Singly or multiply-included shared traits file depending on circumstances. | 5 // Singly or multiply-included shared traits file depending on circumstances. |
| 6 // This allows the use of Autofill IPC serialization macros in more than one IPC | 6 // This allows the use of Autofill IPC serialization macros in more than one IPC |
| 7 // message file. | 7 // message file. |
| 8 #ifndef COMPONENTS_AUTOFILL_CONTENT_COMMON_AUTOFILL_PARAM_TRAITS_MACROS_H_ | 8 #ifndef COMPONENTS_AUTOFILL_CONTENT_COMMON_AUTOFILL_PARAM_TRAITS_MACROS_H_ |
| 9 #define COMPONENTS_AUTOFILL_CONTENT_COMMON_AUTOFILL_PARAM_TRAITS_MACROS_H_ | 9 #define COMPONENTS_AUTOFILL_CONTENT_COMMON_AUTOFILL_PARAM_TRAITS_MACROS_H_ |
| 10 | 10 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 IPC_STRUCT_TRAITS_MEMBER(new_password_element) | 44 IPC_STRUCT_TRAITS_MEMBER(new_password_element) |
| 45 IPC_STRUCT_TRAITS_MEMBER(new_password_value) | 45 IPC_STRUCT_TRAITS_MEMBER(new_password_value) |
| 46 IPC_STRUCT_TRAITS_MEMBER(ssl_valid) | 46 IPC_STRUCT_TRAITS_MEMBER(ssl_valid) |
| 47 IPC_STRUCT_TRAITS_MEMBER(preferred) | 47 IPC_STRUCT_TRAITS_MEMBER(preferred) |
| 48 IPC_STRUCT_TRAITS_MEMBER(blacklisted_by_user) | 48 IPC_STRUCT_TRAITS_MEMBER(blacklisted_by_user) |
| 49 IPC_STRUCT_TRAITS_MEMBER(type) | 49 IPC_STRUCT_TRAITS_MEMBER(type) |
| 50 IPC_STRUCT_TRAITS_MEMBER(times_used) | 50 IPC_STRUCT_TRAITS_MEMBER(times_used) |
| 51 IPC_STRUCT_TRAITS_MEMBER(form_data) | 51 IPC_STRUCT_TRAITS_MEMBER(form_data) |
| 52 IPC_STRUCT_TRAITS_MEMBER(layout) | 52 IPC_STRUCT_TRAITS_MEMBER(layout) |
| 53 IPC_STRUCT_TRAITS_MEMBER(was_parsed_using_autofill_predictions) | 53 IPC_STRUCT_TRAITS_MEMBER(was_parsed_using_autofill_predictions) |
| 54 IPC_STRUCT_TRAITS_MEMBER(does_look_like_signup_form) |
| 54 IPC_STRUCT_TRAITS_END() | 55 IPC_STRUCT_TRAITS_END() |
| 55 | 56 |
| 56 #endif // COMPONENTS_AUTOFILL_CONTENT_COMMON_AUTOFILL_PARAM_TRAITS_MACROS_H_ | 57 #endif // COMPONENTS_AUTOFILL_CONTENT_COMMON_AUTOFILL_PARAM_TRAITS_MACROS_H_ |
| OLD | NEW |