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

Side by Side Diff: chrome/browser/ui/views/autofill/autofill_dialog_views.cc

Issue 23579009: [rAc] Move email address into billing address section. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Include email address in suggestion preview text, fix some compile errors (unittests need more fixi… Created 7 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/views/autofill/autofill_dialog_views.h" 5 #include "chrome/browser/ui/views/autofill/autofill_dialog_views.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/location.h" 10 #include "base/location.h"
(...skipping 1139 matching lines...) Expand 10 before | Expand all | Expand 10 after
1150 overlay_view_(NULL), 1150 overlay_view_(NULL),
1151 button_strip_extra_view_(NULL), 1151 button_strip_extra_view_(NULL),
1152 save_in_chrome_checkbox_(NULL), 1152 save_in_chrome_checkbox_(NULL),
1153 save_in_chrome_checkbox_container_(NULL), 1153 save_in_chrome_checkbox_container_(NULL),
1154 button_strip_image_(NULL), 1154 button_strip_image_(NULL),
1155 footnote_view_(NULL), 1155 footnote_view_(NULL),
1156 legal_document_view_(NULL), 1156 legal_document_view_(NULL),
1157 focus_manager_(NULL), 1157 focus_manager_(NULL),
1158 observer_(this) { 1158 observer_(this) {
1159 DCHECK(delegate); 1159 DCHECK(delegate);
1160 detail_groups_.insert(std::make_pair(SECTION_EMAIL,
1161 DetailsGroup(SECTION_EMAIL)));
1162 detail_groups_.insert(std::make_pair(SECTION_CC, 1160 detail_groups_.insert(std::make_pair(SECTION_CC,
1163 DetailsGroup(SECTION_CC))); 1161 DetailsGroup(SECTION_CC)));
1164 detail_groups_.insert(std::make_pair(SECTION_BILLING, 1162 detail_groups_.insert(std::make_pair(SECTION_BILLING,
1165 DetailsGroup(SECTION_BILLING))); 1163 DetailsGroup(SECTION_BILLING)));
1166 detail_groups_.insert(std::make_pair(SECTION_CC_BILLING, 1164 detail_groups_.insert(std::make_pair(SECTION_CC_BILLING,
1167 DetailsGroup(SECTION_CC_BILLING))); 1165 DetailsGroup(SECTION_CC_BILLING)));
1168 detail_groups_.insert(std::make_pair(SECTION_SHIPPING, 1166 detail_groups_.insert(std::make_pair(SECTION_SHIPPING,
1169 DetailsGroup(SECTION_SHIPPING))); 1167 DetailsGroup(SECTION_SHIPPING)));
1170 } 1168 }
1171 1169
(...skipping 1113 matching lines...) Expand 10 before | Expand all | Expand 10 after
2285 AutofillDialogViews::DetailsGroup::DetailsGroup(DialogSection section) 2283 AutofillDialogViews::DetailsGroup::DetailsGroup(DialogSection section)
2286 : section(section), 2284 : section(section),
2287 container(NULL), 2285 container(NULL),
2288 manual_input(NULL), 2286 manual_input(NULL),
2289 suggested_info(NULL), 2287 suggested_info(NULL),
2290 suggested_button(NULL) {} 2288 suggested_button(NULL) {}
2291 2289
2292 AutofillDialogViews::DetailsGroup::~DetailsGroup() {} 2290 AutofillDialogViews::DetailsGroup::~DetailsGroup() {}
2293 2291
2294 } // namespace autofill 2292 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698