OLD | NEW |
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 #include "components/autofill/core/browser/autofill_profile.h" | 5 #include "components/autofill/core/browser/autofill_profile.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <functional> | 8 #include <functional> |
9 #include <map> | 9 #include <map> |
10 #include <ostream> | 10 #include <ostream> |
11 #include <set> | 11 #include <set> |
12 | 12 |
13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
14 #include "base/guid.h" | 14 #include "base/guid.h" |
15 #include "base/logging.h" | 15 #include "base/logging.h" |
16 #include "base/strings/string_util.h" | 16 #include "base/strings/string_util.h" |
17 #include "base/strings/utf_string_conversions.h" | 17 #include "base/strings/utf_string_conversions.h" |
18 #include "components/autofill/core/browser/address.h" | 18 #include "components/autofill/core/browser/address.h" |
19 #include "components/autofill/core/browser/autofill_country.h" | 19 #include "components/autofill/core/browser/autofill_country.h" |
20 #include "components/autofill/core/browser/autofill_field.h" | 20 #include "components/autofill/core/browser/autofill_field.h" |
21 #include "components/autofill/core/browser/autofill_type.h" | 21 #include "components/autofill/core/browser/autofill_type.h" |
22 #include "components/autofill/core/browser/contact_info.h" | 22 #include "components/autofill/core/browser/contact_info.h" |
23 #include "components/autofill/core/browser/phone_number.h" | 23 #include "components/autofill/core/browser/phone_number.h" |
24 #include "components/autofill/core/browser/phone_number_i18n.h" | 24 #include "components/autofill/core/browser/phone_number_i18n.h" |
25 #include "components/autofill/core/browser/validation.h" | 25 #include "components/autofill/core/browser/validation.h" |
26 #include "components/autofill/core/common/form_field_data.h" | 26 #include "components/autofill/core/common/form_field_data.h" |
27 #include "grit/component_strings.h" | 27 #include "grit/component_strings.h" |
28 #include "ui/base/l10n/l10n_util.h" | 28 #include "ui/base/l10n/l10n_util.h" |
29 | 29 |
| 30 using base::ASCIIToUTF16; |
| 31 using base::UTF16ToUTF8; |
| 32 |
30 namespace autofill { | 33 namespace autofill { |
31 namespace { | 34 namespace { |
32 | 35 |
33 // Like |AutofillType::GetStorableType()|, but also returns |NAME_FULL| for | 36 // Like |AutofillType::GetStorableType()|, but also returns |NAME_FULL| for |
34 // first, middle, and last name field types. | 37 // first, middle, and last name field types. |
35 ServerFieldType GetStorableTypeCollapsingNames(ServerFieldType type) { | 38 ServerFieldType GetStorableTypeCollapsingNames(ServerFieldType type) { |
36 ServerFieldType storable_type = AutofillType(type).GetStorableType(); | 39 ServerFieldType storable_type = AutofillType(type).GetStorableType(); |
37 if (AutofillType(storable_type).group() == NAME) | 40 if (AutofillType(storable_type).group() == NAME) |
38 return NAME_FULL; | 41 return NAME_FULL; |
39 | 42 |
(...skipping 798 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
838 << UTF16ToUTF8(profile.GetRawInfo(ADDRESS_HOME_ZIP)) | 841 << UTF16ToUTF8(profile.GetRawInfo(ADDRESS_HOME_ZIP)) |
839 << " " | 842 << " " |
840 << UTF16ToUTF8(profile.GetRawInfo(ADDRESS_HOME_SORTING_CODE)) | 843 << UTF16ToUTF8(profile.GetRawInfo(ADDRESS_HOME_SORTING_CODE)) |
841 << " " | 844 << " " |
842 << UTF16ToUTF8(profile.GetRawInfo(ADDRESS_HOME_COUNTRY)) | 845 << UTF16ToUTF8(profile.GetRawInfo(ADDRESS_HOME_COUNTRY)) |
843 << " " | 846 << " " |
844 << UTF16ToUTF8(MultiString(profile, PHONE_HOME_WHOLE_NUMBER)); | 847 << UTF16ToUTF8(MultiString(profile, PHONE_HOME_WHOLE_NUMBER)); |
845 } | 848 } |
846 | 849 |
847 } // namespace autofill | 850 } // namespace autofill |
OLD | NEW |