| Index: chrome/browser/ui/autofill/autofill_dialog_i18n_input.h
|
| diff --git a/chrome/browser/ui/autofill/autofill_dialog_i18n_input.h b/chrome/browser/ui/autofill/autofill_dialog_i18n_input.h
|
| index 0384e1b6f5515a4d1cca7ba98c41a215062f11f1..8bea26a684c7aa11d5503888d8400b655ce887ce 100644
|
| --- a/chrome/browser/ui/autofill/autofill_dialog_i18n_input.h
|
| +++ b/chrome/browser/ui/autofill/autofill_dialog_i18n_input.h
|
| @@ -27,12 +27,18 @@ class CreditCard;
|
|
|
| namespace i18ninput {
|
|
|
| -// Builds internationalized address input fields for |country_code| and adds
|
| -// them (at most 13) to |inputs|. |address_type| is which kind of address to
|
| -// build (e.g. billing or shipping).
|
| +// Builds internationalized address input fields for |address_type| (e.g.
|
| +// billing or shipping) in |country_code| (e.g. "US" or "CH").
|
| +//
|
| +// Adds the fields (at most 13) to |inputs|. The |inputs| parameter should not
|
| +// be NULL.
|
| +//
|
| +// Sets the |language_code| to be used for address formatting. The
|
| +// |language_code| parameter can be NULL.
|
| void BuildAddressInputs(common::AddressType address_type,
|
| const std::string& country_code,
|
| - DetailInputs* inputs);
|
| + DetailInputs* inputs,
|
| + std::string* language_code);
|
|
|
| // Returns whether the given card is complete and verified (i.e. was reviewed
|
| // by the user and not just automatically aggregated).
|
|
|