| 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 <memory> | 10 #include <memory> |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 #include "components/autofill/core/browser/autofill_profile_comparator.h" | 29 #include "components/autofill/core/browser/autofill_profile_comparator.h" |
| 30 #include "components/autofill/core/browser/autofill_type.h" | 30 #include "components/autofill/core/browser/autofill_type.h" |
| 31 #include "components/autofill/core/browser/contact_info.h" | 31 #include "components/autofill/core/browser/contact_info.h" |
| 32 #include "components/autofill/core/browser/phone_number.h" | 32 #include "components/autofill/core/browser/phone_number.h" |
| 33 #include "components/autofill/core/browser/phone_number_i18n.h" | 33 #include "components/autofill/core/browser/phone_number_i18n.h" |
| 34 #include "components/autofill/core/browser/state_names.h" | 34 #include "components/autofill/core/browser/state_names.h" |
| 35 #include "components/autofill/core/browser/validation.h" | 35 #include "components/autofill/core/browser/validation.h" |
| 36 #include "components/autofill/core/common/autofill_clock.h" | 36 #include "components/autofill/core/common/autofill_clock.h" |
| 37 #include "components/autofill/core/common/autofill_l10n_util.h" | 37 #include "components/autofill/core/common/autofill_l10n_util.h" |
| 38 #include "components/autofill/core/common/form_field_data.h" | 38 #include "components/autofill/core/common/form_field_data.h" |
| 39 #include "grit/components_strings.h" | 39 #include "components/strings/grit/components_strings.h" |
| 40 #include "third_party/icu/source/common/unicode/uchar.h" | 40 #include "third_party/icu/source/common/unicode/uchar.h" |
| 41 #include "third_party/icu/source/common/unicode/utypes.h" | 41 #include "third_party/icu/source/common/unicode/utypes.h" |
| 42 #include "third_party/icu/source/i18n/unicode/translit.h" | 42 #include "third_party/icu/source/i18n/unicode/translit.h" |
| 43 #include "third_party/libaddressinput/chromium/addressinput_util.h" | 43 #include "third_party/libaddressinput/chromium/addressinput_util.h" |
| 44 #include "third_party/libaddressinput/src/cpp/include/libaddressinput/address_da
ta.h" | 44 #include "third_party/libaddressinput/src/cpp/include/libaddressinput/address_da
ta.h" |
| 45 #include "third_party/libaddressinput/src/cpp/include/libaddressinput/address_fo
rmatter.h" | 45 #include "third_party/libaddressinput/src/cpp/include/libaddressinput/address_fo
rmatter.h" |
| 46 #include "third_party/libaddressinput/src/cpp/include/libaddressinput/address_me
tadata.h" | 46 #include "third_party/libaddressinput/src/cpp/include/libaddressinput/address_me
tadata.h" |
| 47 #include "ui/base/l10n/l10n_util.h" | 47 #include "ui/base/l10n/l10n_util.h" |
| 48 | 48 |
| 49 using base::ASCIIToUTF16; | 49 using base::ASCIIToUTF16; |
| (...skipping 808 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 858 << " " << UTF16ToUTF8(profile.GetRawInfo(ADDRESS_HOME_CITY)) << " " | 858 << " " << UTF16ToUTF8(profile.GetRawInfo(ADDRESS_HOME_CITY)) << " " |
| 859 << UTF16ToUTF8(profile.GetRawInfo(ADDRESS_HOME_STATE)) << " " | 859 << UTF16ToUTF8(profile.GetRawInfo(ADDRESS_HOME_STATE)) << " " |
| 860 << UTF16ToUTF8(profile.GetRawInfo(ADDRESS_HOME_ZIP)) << " " | 860 << UTF16ToUTF8(profile.GetRawInfo(ADDRESS_HOME_ZIP)) << " " |
| 861 << UTF16ToUTF8(profile.GetRawInfo(ADDRESS_HOME_SORTING_CODE)) << " " | 861 << UTF16ToUTF8(profile.GetRawInfo(ADDRESS_HOME_SORTING_CODE)) << " " |
| 862 << UTF16ToUTF8(profile.GetRawInfo(ADDRESS_HOME_COUNTRY)) << " " | 862 << UTF16ToUTF8(profile.GetRawInfo(ADDRESS_HOME_COUNTRY)) << " " |
| 863 << profile.language_code() << " " | 863 << profile.language_code() << " " |
| 864 << UTF16ToUTF8(profile.GetRawInfo(PHONE_HOME_WHOLE_NUMBER)); | 864 << UTF16ToUTF8(profile.GetRawInfo(PHONE_HOME_WHOLE_NUMBER)); |
| 865 } | 865 } |
| 866 | 866 |
| 867 } // namespace autofill | 867 } // namespace autofill |
| OLD | NEW |