Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Side by Side Diff: components/autofill/core/common/autofill_param_traits_macros.h

Issue 23742004: Move PasswordForm from //content to //autofill. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move_password_form_conversion_utils
Patch Set: Rebase Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
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
7 // message file.
8 #ifndef COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_PARAM_TRAITS_MACROS_H_
9 #define COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_PARAM_TRAITS_MACROS_H_
10
11 #include "components/autofill/core/common/password_form.h"
12 #include "ipc/ipc_message_macros.h"
13
14 IPC_ENUM_TRAITS(autofill::PasswordForm::Type)
15
16 IPC_STRUCT_TRAITS_BEGIN(autofill::PasswordForm)
17 IPC_STRUCT_TRAITS_MEMBER(signon_realm)
18 IPC_STRUCT_TRAITS_MEMBER(origin)
19 IPC_STRUCT_TRAITS_MEMBER(action)
20 IPC_STRUCT_TRAITS_MEMBER(submit_element)
21 IPC_STRUCT_TRAITS_MEMBER(username_element)
22 IPC_STRUCT_TRAITS_MEMBER(username_value)
23 IPC_STRUCT_TRAITS_MEMBER(other_possible_usernames)
24 IPC_STRUCT_TRAITS_MEMBER(password_element)
25 IPC_STRUCT_TRAITS_MEMBER(password_value)
26 IPC_STRUCT_TRAITS_MEMBER(password_autocomplete_set)
27 IPC_STRUCT_TRAITS_MEMBER(old_password_element)
28 IPC_STRUCT_TRAITS_MEMBER(old_password_value)
29 IPC_STRUCT_TRAITS_MEMBER(ssl_valid)
30 IPC_STRUCT_TRAITS_MEMBER(preferred)
31 IPC_STRUCT_TRAITS_MEMBER(blacklisted_by_user)
32 IPC_STRUCT_TRAITS_MEMBER(type)
33 IPC_STRUCT_TRAITS_MEMBER(times_used)
34 IPC_STRUCT_TRAITS_END()
35
36 #endif // COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_PARAM_TRAITS_MACROS_H_
OLDNEW
« no previous file with comments | « components/autofill/core/common/autofill_messages.h ('k') | components/autofill/core/common/password_form.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698