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

Side by Side Diff: chrome/browser/ui/autofill/autofill_dialog_i18n_input.h

Issue 390083003: Use street address collapser instead of line separator. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments. Created 6 years, 5 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 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 #ifndef CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_I18N_INPUT_H_ 5 #ifndef CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_I18N_INPUT_H_
6 #define CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_I18N_INPUT_H_ 6 #define CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_I18N_INPUT_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
11 #include "base/strings/string16.h" 11 #include "base/strings/string16.h"
12 #include "chrome/browser/ui/autofill/autofill_dialog_common.h" 12 #include "chrome/browser/ui/autofill/autofill_dialog_common.h"
13 #include "chrome/browser/ui/autofill/autofill_dialog_types.h" 13 #include "chrome/browser/ui/autofill/autofill_dialog_types.h"
14 #include "components/autofill/core/browser/autofill_type.h" 14 #include "components/autofill/core/browser/autofill_type.h"
15 #include "third_party/libaddressinput/src/cpp/include/libaddressinput/address_fi eld.h"
16 15
17 namespace autofill { 16 namespace autofill {
18 17
19 class AutofillProfile; 18 class AutofillProfile;
20 class CreditCard; 19 class CreditCard;
21 20
22 namespace i18ninput { 21 namespace i18ninput {
23 22
24 // Builds internationalized address input fields for |address_type| (e.g. 23 // Builds internationalized address input fields for |address_type| (e.g.
25 // billing or shipping) in |country_code| (e.g. "US" or "CH"). 24 // billing or shipping) in |country_code| (e.g. "US" or "CH").
(...skipping 12 matching lines...) Expand all
38 37
39 // Returns whether the given card is complete and verified (i.e. was reviewed 38 // Returns whether the given card is complete and verified (i.e. was reviewed
40 // by the user and not just automatically aggregated). 39 // by the user and not just automatically aggregated).
41 bool CardHasCompleteAndVerifiedData(const CreditCard& card); 40 bool CardHasCompleteAndVerifiedData(const CreditCard& card);
42 41
43 // As above, but for the address in |profile|. Region-aware, meaning that the 42 // As above, but for the address in |profile|. Region-aware, meaning that the
44 // exact set of required fields depends on the region. 43 // exact set of required fields depends on the region.
45 bool AddressHasCompleteAndVerifiedData(const AutofillProfile& profile, 44 bool AddressHasCompleteAndVerifiedData(const AutofillProfile& profile,
46 const std::string& app_locale); 45 const std::string& app_locale);
47 46
48 // Returns the corresponding Autofill server type for |field|.
49 ServerFieldType TypeForField(::i18n::addressinput::AddressField field,
50 common::AddressType address_type);
51
52 // Sets |field| to the corresponding address field for the Autofill
53 // |server_type|. Returns |true| if |server_type| can be represented as an
54 // address field. The |field| parameter can be NULL.
55 bool FieldForType(ServerFieldType server_type,
56 ::i18n::addressinput::AddressField* field);
57
58 } // namespace i18ninput 47 } // namespace i18ninput
59 } // namespace autofill 48 } // namespace autofill
60 49
61 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_I18N_INPUT_H_ 50 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_I18N_INPUT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698