Chromium Code Reviews| Index: chrome/browser/ui/autofill/autofill_dialog_controller_impl.h |
| diff --git a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h |
| index 3f48f734d2bc86f08d716893bdc41de25e270963..5429473126b13a9e9e2f8c15db2c27caf0f67126 100644 |
| --- a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h |
| +++ b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h |
| @@ -401,8 +401,9 @@ class AutofillDialogControllerImpl : public AutofillDialogViewDelegate, |
| void FillOutputForSection(DialogSection section); |
| // As above, but uses |compare| to determine whether a DetailInput matches |
| // a field. Saves any new Autofill data to the PersonalDataManager. |
| - void FillOutputForSectionWithComparator(DialogSection section, |
| - const InputFieldComparator& compare); |
| + void FillOutputForSectionWithComparator( |
| + DialogSection section, |
| + const FormStructure::InputFieldComparator& compare); |
| // Returns whether |form_structure|_| has any fields that match the fieldset |
| // represented by |section|. |
| @@ -461,6 +462,9 @@ class AutofillDialogControllerImpl : public AutofillDialogViewDelegate, |
| // Like RequestedFieldsForSection, but returns a pointer. |
| DetailInputs* MutableRequestedFieldsForSection(DialogSection section); |
| + // Returns just the |type| attributes of RequestedFieldsForSection(section). |
| + std::vector<ServerFieldType> RequestedTypesForSection(DialogSection section); |
|
aruslan
2014/01/27 19:05:36
nit: const?
|
| + |
| // Returns the country code (e.g. "US") for |section|. |
| std::string CountryCodeForSection(DialogSection section); |