Chromium Code Reviews| 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 e0948e9715b2bacefba5c3e96b094fa40ee858bb..7dfa350c80cb19824f6ae07140a27f344547772a 100644 |
| --- a/chrome/browser/ui/views/autofill/autofill_dialog_views.cc |
| +++ b/chrome/browser/ui/views/autofill/autofill_dialog_views.cc |
| @@ -1927,10 +1927,9 @@ void AutofillDialogViews::CreateDetailsSection(DialogSection section) { |
| DetailsGroup* group = GroupForSection(section); |
| // Container (holds label + inputs). |
| - group->container = new SectionContainer( |
| - delegate_->LabelForSection(section), |
|
Evan Stade
2014/01/03 20:28:29
this change isn't worth sullying the revision hist
Dan Beam
2014/01/03 20:31:04
then write smaller code the first time :)
|
| - inputs_container, |
| - group->suggested_button); |
| + group->container = new SectionContainer(delegate_->LabelForSection(section), |
| + inputs_container, |
| + group->suggested_button); |
| DCHECK(group->suggested_button->parent()); |
| UpdateDetailsGroupState(*group); |
| } |