Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1341)

Unified Diff: chrome/browser/ui/views/autofill/autofill_dialog_views.cc

Issue 98693017: Some nits I found while looking around rAc() code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
}

Powered by Google App Engine
This is Rietveld 408576698