| 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 #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/chromium/cpp/include/libaddressinput/addre
ss_field.h" | 15 #include "third_party/libaddressinput/src/cpp/include/libaddressinput/address_fi
eld.h" |
| 16 | |
| 17 namespace i18n { | |
| 18 namespace addressinput { | |
| 19 struct AddressData; | |
| 20 } | |
| 21 } | |
| 22 | 16 |
| 23 namespace autofill { | 17 namespace autofill { |
| 24 | 18 |
| 25 class AutofillProfile; | 19 class AutofillProfile; |
| 26 class CreditCard; | 20 class CreditCard; |
| 27 | 21 |
| 28 namespace i18ninput { | 22 namespace i18ninput { |
| 29 | 23 |
| 30 // Builds internationalized address input fields for |address_type| (e.g. | 24 // Builds internationalized address input fields for |address_type| (e.g. |
| 31 // billing or shipping) in |country_code| (e.g. "US" or "CH"). | 25 // billing or shipping) in |country_code| (e.g. "US" or "CH"). |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 | 57 |
| 64 // Whether or not |country_code| has a fully supported address format. | 58 // Whether or not |country_code| has a fully supported address format. |
| 65 // TODO(dbeam): remove this when filling dependent locality is supported. | 59 // TODO(dbeam): remove this when filling dependent locality is supported. |
| 66 // http://crbug.com/340929 | 60 // http://crbug.com/340929 |
| 67 bool CountryIsFullySupported(const std::string& country_code); | 61 bool CountryIsFullySupported(const std::string& country_code); |
| 68 | 62 |
| 69 } // namespace i18ninput | 63 } // namespace i18ninput |
| 70 } // namespace autofill | 64 } // namespace autofill |
| 71 | 65 |
| 72 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_I18N_INPUT_H_ | 66 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_I18N_INPUT_H_ |
| OLD | NEW |