| 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" | |
| 13 #include "chrome/browser/ui/autofill/autofill_dialog_types.h" | |
| 14 #include "components/autofill/core/browser/autofill_type.h" | 12 #include "components/autofill/core/browser/autofill_type.h" |
| 13 #include "components/autofill/core/browser/ui/autofill_dialog_common.h" |
| 14 #include "components/autofill/core/browser/ui/autofill_dialog_types.h" |
| 15 | 15 |
| 16 namespace autofill { | 16 namespace autofill { |
| 17 | 17 |
| 18 class AutofillProfile; | 18 class AutofillProfile; |
| 19 class CreditCard; | 19 class CreditCard; |
| 20 | 20 |
| 21 namespace i18ninput { | 21 namespace i18ninput { |
| 22 | 22 |
| 23 // Builds internationalized address input fields for |address_type| (e.g. | 23 // Builds internationalized address input fields for |address_type| (e.g. |
| 24 // billing or shipping) in |country_code| (e.g. "US" or "CH"). | 24 // billing or shipping) in |country_code| (e.g. "US" or "CH"). |
| (...skipping 16 matching lines...) Expand all Loading... |
| 41 | 41 |
| 42 // 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 |
| 43 // exact set of required fields depends on the region. | 43 // exact set of required fields depends on the region. |
| 44 bool AddressHasCompleteAndVerifiedData(const AutofillProfile& profile, | 44 bool AddressHasCompleteAndVerifiedData(const AutofillProfile& profile, |
| 45 const std::string& app_locale); | 45 const std::string& app_locale); |
| 46 | 46 |
| 47 } // namespace i18ninput | 47 } // namespace i18ninput |
| 48 } // namespace autofill | 48 } // namespace autofill |
| 49 | 49 |
| 50 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_I18N_INPUT_H_ | 50 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_I18N_INPUT_H_ |
| OLD | NEW |