| Index: chrome/browser/ui/views/autofill/autofill_dialog_views.cc
|
| diff --git a/chrome/browser/ui/views/autofill/autofill_dialog_views.cc b/chrome/browser/ui/views/autofill/autofill_dialog_views.cc
|
| index eebd2e1eca8a00bf070b52d2bc18363028fe3db9..38c29d7034f0147de31ef530539faca06cfe8147 100644
|
| --- a/chrome/browser/ui/views/autofill/autofill_dialog_views.cc
|
| +++ b/chrome/browser/ui/views/autofill/autofill_dialog_views.cc
|
| @@ -1919,15 +1919,11 @@ views::View* AutofillDialogViews::CreateDetailsContainer() {
|
| }
|
|
|
| void AutofillDialogViews::CreateDetailsSection(DialogSection section) {
|
| - // Inputs container (manual inputs + combobox).
|
| - views::View* inputs_container = CreateInputsContainer(section);
|
| -
|
| DetailsGroup* group = GroupForSection(section);
|
| // Container (holds label + inputs).
|
| - group->container = new SectionContainer(
|
| - delegate_->LabelForSection(section),
|
| - inputs_container,
|
| - group->suggested_button);
|
| + group->container = new SectionContainer(delegate_->LabelForSection(section),
|
| + CreateInputsContainer(section),
|
| + group->suggested_button);
|
| DCHECK(group->suggested_button->parent());
|
| UpdateDetailsGroupState(*group);
|
| }
|
|
|