| Index: components/autofill/core/common/autofill_param_traits_macros.h
|
| diff --git a/components/autofill/core/common/autofill_param_traits_macros.h b/components/autofill/core/common/autofill_param_traits_macros.h
|
| index b0a1ccf69e26fdab73c669cb0080f6f2205a0199..91d357a1e1fae68cecef0b92a95ebde42df8ea0c 100644
|
| --- a/components/autofill/core/common/autofill_param_traits_macros.h
|
| +++ b/components/autofill/core/common/autofill_param_traits_macros.h
|
| @@ -13,6 +13,15 @@
|
|
|
| IPC_ENUM_TRAITS(autofill::PasswordForm::Type)
|
|
|
| +IPC_STRUCT_TRAITS_BEGIN(autofill::FormData)
|
| + IPC_STRUCT_TRAITS_MEMBER(name)
|
| + IPC_STRUCT_TRAITS_MEMBER(method)
|
| + IPC_STRUCT_TRAITS_MEMBER(origin)
|
| + IPC_STRUCT_TRAITS_MEMBER(action)
|
| + IPC_STRUCT_TRAITS_MEMBER(user_submitted)
|
| + IPC_STRUCT_TRAITS_MEMBER(fields)
|
| +IPC_STRUCT_TRAITS_END()
|
| +
|
| IPC_STRUCT_TRAITS_BEGIN(autofill::PasswordForm)
|
| IPC_STRUCT_TRAITS_MEMBER(signon_realm)
|
| IPC_STRUCT_TRAITS_MEMBER(origin)
|
| @@ -31,6 +40,7 @@ IPC_STRUCT_TRAITS_BEGIN(autofill::PasswordForm)
|
| IPC_STRUCT_TRAITS_MEMBER(blacklisted_by_user)
|
| IPC_STRUCT_TRAITS_MEMBER(type)
|
| IPC_STRUCT_TRAITS_MEMBER(times_used)
|
| + IPC_STRUCT_TRAITS_MEMBER(form_data)
|
| IPC_STRUCT_TRAITS_END()
|
|
|
| #endif // COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_PARAM_TRAITS_MACROS_H_
|
|
|