| Index: chrome/browser/ui/views/autofill/autofill_dialog_views.h
|
| diff --git a/chrome/browser/ui/views/autofill/autofill_dialog_views.h b/chrome/browser/ui/views/autofill/autofill_dialog_views.h
|
| index e909576c38ccb5c8366d5d907e8f33890072c9df..881c7b872528f9de660a65750a1d49ae4682ad09 100644
|
| --- a/chrome/browser/ui/views/autofill/autofill_dialog_views.h
|
| +++ b/chrome/browser/ui/views/autofill/autofill_dialog_views.h
|
| @@ -504,10 +504,8 @@ class AutofillDialogViews : public AutofillDialogView,
|
| // a given section.
|
| views::View* CreateInputsContainer(DialogSection section);
|
|
|
| - // Creates a grid of textfield views for the given section, and stores them
|
| - // in the appropriate DetailsGroup. The top level View in the hierarchy is
|
| - // returned.
|
| - views::View* InitInputsView(DialogSection section);
|
| + // Creates a grid of inputs for the given section.
|
| + void InitInputsView(DialogSection section);
|
|
|
| // Changes the function of the whole dialog. Currently this can show a loading
|
| // shield, an embedded sign in web view, or the more typical detail input mode
|
| @@ -581,6 +579,9 @@ class AutofillDialogViews : public AutofillDialogView,
|
| // NULL.
|
| views::Combobox* ComboboxForInput(const DetailInput& input);
|
|
|
| + // Returns the associated ServerFieldType for |combobox|.
|
| + ServerFieldType TypeForCombobox(const views::Combobox* combobox) const;
|
| +
|
| // Called when the details container changes in size or position.
|
| void DetailsContainerBoundsChanged();
|
|
|
|
|