diff options
author | pritam.nikam <pritam.nikam@samsung.com> | 2014-11-10 23:44:22 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-11-11 07:45:04 +0000 |
commit | 0acc7f6e27371b58110c5a273de2784c068d1ad8 (patch) | |
tree | 799574dc5eefd960092fd9586168c1a0d54437d9 /components/autofill/content/common | |
parent | 878dca3cca9b96886ddb4233adb5c7fca779fbcc (diff) | |
download | chromium_src-0acc7f6e27371b58110c5a273de2784c068d1ad8.zip chromium_src-0acc7f6e27371b58110c5a273de2784c068d1ad8.tar.gz chromium_src-0acc7f6e27371b58110c5a273de2784c068d1ad8.tar.bz2 |
[Password manager] Replace the FormFieldData vector from autofill::FormData with named-fields (Clean-up).
BUG=417295
Review URL: https://codereview.chromium.org/614023002
Cr-Commit-Position: refs/heads/master@{#303603}
Diffstat (limited to 'components/autofill/content/common')
-rw-r--r-- | components/autofill/content/common/autofill_messages.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/components/autofill/content/common/autofill_messages.h b/components/autofill/content/common/autofill_messages.h index 57b6a9a..cd5cd1e 100644 --- a/components/autofill/content/common/autofill_messages.h +++ b/components/autofill/content/common/autofill_messages.h @@ -77,7 +77,12 @@ IPC_STRUCT_TRAITS_BEGIN(autofill::UsernamesCollectionKey) IPC_STRUCT_TRAITS_END() IPC_STRUCT_TRAITS_BEGIN(autofill::PasswordFormFillData) - IPC_STRUCT_TRAITS_MEMBER(basic_data) + IPC_STRUCT_TRAITS_MEMBER(name) + IPC_STRUCT_TRAITS_MEMBER(origin) + IPC_STRUCT_TRAITS_MEMBER(action) + IPC_STRUCT_TRAITS_MEMBER(user_submitted) + IPC_STRUCT_TRAITS_MEMBER(username_field) + IPC_STRUCT_TRAITS_MEMBER(password_field) IPC_STRUCT_TRAITS_MEMBER(preferred_realm) IPC_STRUCT_TRAITS_MEMBER(additional_logins) IPC_STRUCT_TRAITS_MEMBER(other_possible_usernames) |