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

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

Issue 2352533003: [Autofill] Migrate ChromePasswordManagerClient<-->PasswordGenerationAgent IPCs to mojo. (Closed)
Patch Set: Rebase only Created 4 years, 2 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
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
11 #include "components/autofill/core/common/form_field_data.h"
11 #include "components/autofill/core/common/password_form.h" 12 #include "components/autofill/core/common/password_form.h"
12 #include "ipc/ipc_message_macros.h" 13 #include "ipc/ipc_message_macros.h"
14 #include "url/ipc/url_param_traits.h"
15 #include "url/origin.h"
16
17 IPC_ENUM_TRAITS_MAX_VALUE(autofill::FormFieldData::CheckStatus,
18 autofill::FormFieldData::CheckStatus::CHECKED)
19
20 IPC_ENUM_TRAITS_MAX_VALUE(autofill::FormFieldData::RoleAttribute,
21 autofill::FormFieldData::ROLE_ATTRIBUTE_OTHER)
22
23 IPC_ENUM_TRAITS_MAX_VALUE(base::i18n::TextDirection,
24 base::i18n::TEXT_DIRECTION_NUM_DIRECTIONS - 1)
25
26 IPC_STRUCT_TRAITS_BEGIN(autofill::FormFieldData)
27 IPC_STRUCT_TRAITS_MEMBER(label)
28 IPC_STRUCT_TRAITS_MEMBER(name)
29 IPC_STRUCT_TRAITS_MEMBER(value)
30 IPC_STRUCT_TRAITS_MEMBER(form_control_type)
31 IPC_STRUCT_TRAITS_MEMBER(autocomplete_attribute)
32 IPC_STRUCT_TRAITS_MEMBER(placeholder)
33 IPC_STRUCT_TRAITS_MEMBER(role)
34 IPC_STRUCT_TRAITS_MEMBER(max_length)
35 IPC_STRUCT_TRAITS_MEMBER(is_autofilled)
36 IPC_STRUCT_TRAITS_MEMBER(check_status)
37 IPC_STRUCT_TRAITS_MEMBER(is_focusable)
38 IPC_STRUCT_TRAITS_MEMBER(should_autocomplete)
39 IPC_STRUCT_TRAITS_MEMBER(text_direction)
40 IPC_STRUCT_TRAITS_MEMBER(option_values)
41 IPC_STRUCT_TRAITS_MEMBER(option_contents)
42 IPC_STRUCT_TRAITS_MEMBER(css_classes)
43 IPC_STRUCT_TRAITS_MEMBER(properties_mask)
44 IPC_STRUCT_TRAITS_END()
13 45
14 IPC_ENUM_TRAITS_MAX_VALUE(autofill::PasswordForm::Type, 46 IPC_ENUM_TRAITS_MAX_VALUE(autofill::PasswordForm::Type,
15 autofill::PasswordForm::TYPE_LAST) 47 autofill::PasswordForm::TYPE_LAST)
16 48
17 IPC_STRUCT_TRAITS_BEGIN(autofill::FormData) 49 IPC_STRUCT_TRAITS_BEGIN(autofill::FormData)
18 IPC_STRUCT_TRAITS_MEMBER(name) 50 IPC_STRUCT_TRAITS_MEMBER(name)
19 IPC_STRUCT_TRAITS_MEMBER(origin) 51 IPC_STRUCT_TRAITS_MEMBER(origin)
20 IPC_STRUCT_TRAITS_MEMBER(action) 52 IPC_STRUCT_TRAITS_MEMBER(action)
21 IPC_STRUCT_TRAITS_MEMBER(is_form_tag) 53 IPC_STRUCT_TRAITS_MEMBER(is_form_tag)
22 IPC_STRUCT_TRAITS_MEMBER(is_formless_checkout) 54 IPC_STRUCT_TRAITS_MEMBER(is_formless_checkout)
(...skipping 24 matching lines...) Expand all
47 IPC_STRUCT_TRAITS_MEMBER(blacklisted_by_user) 79 IPC_STRUCT_TRAITS_MEMBER(blacklisted_by_user)
48 IPC_STRUCT_TRAITS_MEMBER(type) 80 IPC_STRUCT_TRAITS_MEMBER(type)
49 IPC_STRUCT_TRAITS_MEMBER(times_used) 81 IPC_STRUCT_TRAITS_MEMBER(times_used)
50 IPC_STRUCT_TRAITS_MEMBER(form_data) 82 IPC_STRUCT_TRAITS_MEMBER(form_data)
51 IPC_STRUCT_TRAITS_MEMBER(layout) 83 IPC_STRUCT_TRAITS_MEMBER(layout)
52 IPC_STRUCT_TRAITS_MEMBER(was_parsed_using_autofill_predictions) 84 IPC_STRUCT_TRAITS_MEMBER(was_parsed_using_autofill_predictions)
53 IPC_STRUCT_TRAITS_MEMBER(does_look_like_signup_form) 85 IPC_STRUCT_TRAITS_MEMBER(does_look_like_signup_form)
54 IPC_STRUCT_TRAITS_END() 86 IPC_STRUCT_TRAITS_END()
55 87
56 #endif // COMPONENTS_AUTOFILL_CONTENT_COMMON_AUTOFILL_PARAM_TRAITS_MACROS_H_ 88 #endif // COMPONENTS_AUTOFILL_CONTENT_COMMON_AUTOFILL_PARAM_TRAITS_MACROS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698