autofill_dialog_i18n_input.h revision cedac228d2dd51db4b79ea1e72c7f249408ee061
1// Copyright 2014 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#ifndef CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_I18N_INPUT_H_
6#define CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_I18N_INPUT_H_
7
8#include <string>
9
10#include "base/callback.h"
11#include "base/strings/string16.h"
12#include "chrome/browser/ui/autofill/autofill_dialog_common.h"
13#include "chrome/browser/ui/autofill/autofill_dialog_types.h"
14#include "components/autofill/core/browser/autofill_type.h"
15#include "third_party/libaddressinput/chromium/cpp/include/libaddressinput/address_field.h"
16
17namespace i18n {
18namespace addressinput {
19struct AddressData;
20}
21}
22
23namespace autofill {
24
25class AutofillProfile;
26class CreditCard;
27
28namespace i18ninput {
29
30// Builds internationalized address input fields for |address_type| (e.g.
31// billing or shipping) in |country_code| (e.g. "US" or "CH").
32//
33// The |inputs| and |language_code| are output-only parameters.
34//
35// The function adds the fields (at most 13) to |inputs|. This parameter should
36// not be NULL.
37//
38// The function sets the |language_code| to be used for address formatting. This
39// parameter can be NULL.
40void BuildAddressInputs(common::AddressType address_type,
41                        const std::string& country_code,
42                        DetailInputs* inputs,
43                        std::string* language_code);
44
45// Returns whether the given card is complete and verified (i.e. was reviewed
46// by the user and not just automatically aggregated).
47bool CardHasCompleteAndVerifiedData(const CreditCard& card);
48
49// As above, but for the address in |profile|. Region-aware, meaning that the
50// exact set of required fields depends on the region.
51bool AddressHasCompleteAndVerifiedData(const AutofillProfile& profile,
52                                       const std::string& app_locale);
53
54// Returns the corresponding Autofill server type for |field|.
55ServerFieldType TypeForField(::i18n::addressinput::AddressField field,
56                             common::AddressType address_type);
57
58// Sets |field| to the corresponding address field for the Autofill
59// |server_type|. Returns |true| if |server_type| can be represented as an
60// address field. The |field| parameter can be NULL.
61bool FieldForType(ServerFieldType server_type,
62                  ::i18n::addressinput::AddressField* field);
63
64// Whether or not |country_code| has a fully supported address format.
65// TODO(dbeam): remove this when filling dependent locality is supported.
66// http://crbug.com/340929
67bool CountryIsFullySupported(const std::string& country_code);
68
69}  // namespace i18ninput
70}  // namespace autofill
71
72#endif  // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_I18N_INPUT_H_
73