OLD | NEW |
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 #include "chrome/browser/ui/autofill/autofill_dialog_i18n_input.h" | 5 #include "chrome/browser/ui/autofill/autofill_dialog_i18n_input.h" |
6 | 6 |
7 #include "base/strings/string_split.h" | 7 #include "base/strings/string_split.h" |
8 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
9 #include "chrome/browser/browser_process.h" | 9 #include "chrome/browser/browser_process.h" |
10 #include "components/autofill/core/browser/address_i18n.h" | 10 #include "components/autofill/core/browser/address_i18n.h" |
11 #include "components/autofill/core/browser/autofill_profile.h" | 11 #include "components/autofill/core/browser/autofill_profile.h" |
12 #include "components/autofill/core/browser/credit_card.h" | 12 #include "components/autofill/core/browser/credit_card.h" |
13 #include "components/autofill/core/browser/field_types.h" | 13 #include "components/autofill/core/browser/field_types.h" |
14 #include "grit/components_strings.h" | 14 #include "grit/components_strings.h" |
15 #include "third_party/libaddressinput/chromium/addressinput_util.h" | 15 #include "third_party/libaddressinput/chromium/addressinput_util.h" |
16 #include "third_party/libaddressinput/chromium/cpp/include/libaddressinput/addre
ss_data.h" | 16 #include "third_party/libaddressinput/src/cpp/include/libaddressinput/address_da
ta.h" |
17 #include "third_party/libaddressinput/chromium/cpp/include/libaddressinput/addre
ss_field.h" | 17 #include "third_party/libaddressinput/src/cpp/include/libaddressinput/address_fi
eld.h" |
18 #include "third_party/libaddressinput/chromium/cpp/include/libaddressinput/addre
ss_ui.h" | 18 #include "third_party/libaddressinput/src/cpp/include/libaddressinput/address_ui
.h" |
19 #include "third_party/libaddressinput/chromium/cpp/include/libaddressinput/addre
ss_ui_component.h" | 19 #include "third_party/libaddressinput/src/cpp/include/libaddressinput/address_ui
_component.h" |
| 20 #include "third_party/libaddressinput/src/cpp/include/libaddressinput/localizati
on.h" |
20 #include "ui/base/l10n/l10n_util.h" | 21 #include "ui/base/l10n/l10n_util.h" |
21 | 22 |
22 namespace autofill { | 23 namespace autofill { |
23 namespace i18ninput { | 24 namespace i18ninput { |
24 | 25 |
25 namespace { | 26 namespace { |
26 | 27 |
27 using base::UTF16ToUTF8; | 28 using base::UTF16ToUTF8; |
28 using ::i18n::addressinput::AddressData; | |
29 using ::i18n::addressinput::AddressField; | 29 using ::i18n::addressinput::AddressField; |
30 using ::i18n::addressinput::AddressUiComponent; | 30 using ::i18n::addressinput::AddressUiComponent; |
| 31 using ::i18n::addressinput::Localization; |
| 32 |
| 33 std::vector<AddressUiComponent> BuildComponents(const std::string& country_code, |
| 34 std::string* language_code) { |
| 35 Localization localization; |
| 36 localization.SetGetter(l10n_util::GetStringUTF8); |
| 37 std::string not_used; |
| 38 return ::i18n::addressinput::BuildComponents( |
| 39 country_code, localization, g_browser_process->GetApplicationLocale(), |
| 40 language_code == NULL ? ¬_used : language_code); |
| 41 } |
31 | 42 |
32 DetailInput::Length LengthFromHint(AddressUiComponent::LengthHint hint) { | 43 DetailInput::Length LengthFromHint(AddressUiComponent::LengthHint hint) { |
33 if (hint == AddressUiComponent::HINT_SHORT) | 44 if (hint == AddressUiComponent::HINT_SHORT) |
34 return DetailInput::SHORT; | 45 return DetailInput::SHORT; |
35 DCHECK_EQ(hint, AddressUiComponent::HINT_LONG); | 46 DCHECK_EQ(hint, AddressUiComponent::HINT_LONG); |
36 return DetailInput::LONG; | 47 return DetailInput::LONG; |
37 } | 48 } |
38 | 49 |
39 } // namespace | 50 } // namespace |
40 | 51 |
41 void BuildAddressInputs(common::AddressType address_type, | 52 void BuildAddressInputs(common::AddressType address_type, |
42 const std::string& country_code, | 53 const std::string& country_code, |
43 DetailInputs* inputs, | 54 DetailInputs* inputs, |
44 std::string* language_code) { | 55 std::string* language_code) { |
45 std::vector<AddressUiComponent> components( | 56 const std::vector<AddressUiComponent>& components( |
46 ::i18n::addressinput::BuildComponents( | 57 BuildComponents(country_code, language_code)); |
47 country_code, g_browser_process->GetApplicationLocale(), | |
48 language_code)); | |
49 | 58 |
50 const bool billing = address_type == common::ADDRESS_TYPE_BILLING; | 59 const bool billing = address_type == common::ADDRESS_TYPE_BILLING; |
51 | 60 |
52 for (size_t i = 0; i < components.size(); ++i) { | 61 for (size_t i = 0; i < components.size(); ++i) { |
53 const AddressUiComponent& component = components[i]; | 62 const AddressUiComponent& component = components[i]; |
54 ServerFieldType server_type = TypeForField(component.field, address_type); | 63 ServerFieldType server_type = TypeForField(component.field, address_type); |
55 DetailInput::Length length = LengthFromHint(component.length_hint); | 64 DetailInput::Length length = LengthFromHint(component.length_hint); |
56 base::string16 placeholder = l10n_util::GetStringUTF16(component.name_id); | 65 base::string16 placeholder = base::UTF8ToUTF16(component.name); |
57 DetailInput input = { length, server_type, placeholder }; | 66 DetailInput input = { length, server_type, placeholder }; |
58 inputs->push_back(input); | 67 inputs->push_back(input); |
59 } | 68 } |
60 | 69 |
61 ServerFieldType server_type = | 70 ServerFieldType server_type = |
62 billing ? ADDRESS_BILLING_COUNTRY : ADDRESS_HOME_COUNTRY; | 71 billing ? ADDRESS_BILLING_COUNTRY : ADDRESS_HOME_COUNTRY; |
63 base::string16 placeholder_text = | 72 base::string16 placeholder_text = |
64 l10n_util::GetStringUTF16(IDS_AUTOFILL_FIELD_LABEL_COUNTRY); | 73 l10n_util::GetStringUTF16(IDS_AUTOFILL_FIELD_LABEL_COUNTRY); |
65 DetailInput input = { DetailInput::LONG, server_type, placeholder_text }; | 74 DetailInput input = { DetailInput::LONG, server_type, placeholder_text }; |
66 inputs->push_back(input); | 75 inputs->push_back(input); |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 case ::i18n::addressinput::STREET_ADDRESS: | 138 case ::i18n::addressinput::STREET_ADDRESS: |
130 return billing ? ADDRESS_BILLING_STREET_ADDRESS : | 139 return billing ? ADDRESS_BILLING_STREET_ADDRESS : |
131 ADDRESS_HOME_STREET_ADDRESS; | 140 ADDRESS_HOME_STREET_ADDRESS; |
132 case ::i18n::addressinput::RECIPIENT: | 141 case ::i18n::addressinput::RECIPIENT: |
133 return billing ? NAME_BILLING_FULL : NAME_FULL; | 142 return billing ? NAME_BILLING_FULL : NAME_FULL; |
134 } | 143 } |
135 NOTREACHED(); | 144 NOTREACHED(); |
136 return UNKNOWN_TYPE; | 145 return UNKNOWN_TYPE; |
137 } | 146 } |
138 | 147 |
139 bool FieldForType(ServerFieldType server_type, | 148 bool FieldForType(ServerFieldType server_type, AddressField* field) { |
140 ::i18n::addressinput::AddressField* field) { | |
141 switch (server_type) { | 149 switch (server_type) { |
142 case ADDRESS_BILLING_COUNTRY: | 150 case ADDRESS_BILLING_COUNTRY: |
143 case ADDRESS_HOME_COUNTRY: | 151 case ADDRESS_HOME_COUNTRY: |
144 if (field) | 152 if (field) |
145 *field = ::i18n::addressinput::COUNTRY; | 153 *field = ::i18n::addressinput::COUNTRY; |
146 return true; | 154 return true; |
147 case ADDRESS_BILLING_STATE: | 155 case ADDRESS_BILLING_STATE: |
148 case ADDRESS_HOME_STATE: | 156 case ADDRESS_HOME_STATE: |
149 if (field) | 157 if (field) |
150 *field = ::i18n::addressinput::ADMIN_AREA; | 158 *field = ::i18n::addressinput::ADMIN_AREA; |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 if (field) | 191 if (field) |
184 *field = ::i18n::addressinput::RECIPIENT; | 192 *field = ::i18n::addressinput::RECIPIENT; |
185 return true; | 193 return true; |
186 default: | 194 default: |
187 return false; | 195 return false; |
188 } | 196 } |
189 } | 197 } |
190 | 198 |
191 } // namespace i18ninput | 199 } // namespace i18ninput |
192 } // namespace autofill | 200 } // namespace autofill |
OLD | NEW |