blob: 4e394741e4ef79a95f6b359eb8ed5192a84affb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_AUTOFILL_ASSISTANT_BROWSER_USER_DATA_H_
#define COMPONENTS_AUTOFILL_ASSISTANT_BROWSER_USER_DATA_H_
#include <memory>
#include <string>
#include <vector>
#include "base/callback.h"
#include "components/autofill_assistant/browser/service.pb.h"
#include "components/autofill_assistant/browser/user_action.h"
namespace autofill {
class AutofillProfile;
class CreditCard;
} // namespace autofill
namespace autofill_assistant {
// GENERATED_JAVA_ENUM_PACKAGE: (
// org.chromium.chrome.browser.autofill_assistant.user_data)
// GENERATED_JAVA_CLASS_NAME_OVERRIDE: AssistantTermsAndConditionsState
enum TermsAndConditionsState {
NOT_SELECTED = 0,
ACCEPTED = 1,
REQUIRES_REVIEW = 2,
};
// Represents a concrete login choice in the UI, e.g., 'Guest checkout' or
// a particular Chrome PWM login account.
struct LoginChoice {
LoginChoice(const std::string& id, const std::string& text, int priority);
~LoginChoice();
// Uniquely identifies this login choice.
std::string identifier;
// The label to display to the user.
std::string label;
// The priority to pre-select this choice (-1 == not set/automatic).
int preselect_priority = -1;
};
// Struct for holding the user data.
struct UserData {
UserData();
~UserData();
bool succeed = false;
std::unique_ptr<autofill::AutofillProfile> contact_profile;
std::unique_ptr<autofill::CreditCard> card;
std::unique_ptr<autofill::AutofillProfile> shipping_address;
std::unique_ptr<autofill::AutofillProfile> billing_address;
std::string login_choice_identifier;
TermsAndConditionsState terms_and_conditions = NOT_SELECTED;
};
// Struct for holding the payment request options.
struct CollectUserDataOptions {
CollectUserDataOptions();
~CollectUserDataOptions();
bool request_payer_name = false;
bool request_payer_email = false;
bool request_payer_phone = false;
bool request_shipping = false;
bool request_payment_method = false;
bool request_login_choice = false;
bool require_billing_postal_code = false;
std::string billing_postal_code_missing_text;
// If empty, terms and conditions should not be shown.
std::string accept_terms_and_conditions_text;
bool show_terms_as_checkbox = false;
std::vector<std::string> supported_basic_card_networks;
std::vector<LoginChoice> login_choices;
std::string default_email;
std::string login_section_title;
UserActionProto confirm_action;
std::vector<UserActionProto> additional_actions;
TermsAndConditionsState initial_terms_and_conditions = NOT_SELECTED;
base::OnceCallback<void(std::unique_ptr<UserData>)> confirm_callback;
base::OnceCallback<void(int)> additional_actions_callback;
base::OnceCallback<void(int)> terms_link_callback;
};
} // namespace autofill_assistant
#endif // COMPONENTS_AUTOFILL_ASSISTANT_BROWSER_USER_DATA_H_
|