OLD | NEW |
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 1215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1226 overlay_view_(NULL), | 1226 overlay_view_(NULL), |
1227 button_strip_extra_view_(NULL), | 1227 button_strip_extra_view_(NULL), |
1228 save_in_chrome_checkbox_(NULL), | 1228 save_in_chrome_checkbox_(NULL), |
1229 save_in_chrome_checkbox_container_(NULL), | 1229 save_in_chrome_checkbox_container_(NULL), |
1230 button_strip_image_(NULL), | 1230 button_strip_image_(NULL), |
1231 footnote_view_(NULL), | 1231 footnote_view_(NULL), |
1232 legal_document_view_(NULL), | 1232 legal_document_view_(NULL), |
1233 focus_manager_(NULL), | 1233 focus_manager_(NULL), |
1234 observer_(this) { | 1234 observer_(this) { |
1235 DCHECK(delegate); | 1235 DCHECK(delegate); |
1236 detail_groups_.insert(std::make_pair(SECTION_EMAIL, | |
1237 DetailsGroup(SECTION_EMAIL))); | |
1238 detail_groups_.insert(std::make_pair(SECTION_CC, | 1236 detail_groups_.insert(std::make_pair(SECTION_CC, |
1239 DetailsGroup(SECTION_CC))); | 1237 DetailsGroup(SECTION_CC))); |
1240 detail_groups_.insert(std::make_pair(SECTION_BILLING, | 1238 detail_groups_.insert(std::make_pair(SECTION_BILLING, |
1241 DetailsGroup(SECTION_BILLING))); | 1239 DetailsGroup(SECTION_BILLING))); |
1242 detail_groups_.insert(std::make_pair(SECTION_CC_BILLING, | 1240 detail_groups_.insert(std::make_pair(SECTION_CC_BILLING, |
1243 DetailsGroup(SECTION_CC_BILLING))); | 1241 DetailsGroup(SECTION_CC_BILLING))); |
1244 detail_groups_.insert(std::make_pair(SECTION_SHIPPING, | 1242 detail_groups_.insert(std::make_pair(SECTION_SHIPPING, |
1245 DetailsGroup(SECTION_SHIPPING))); | 1243 DetailsGroup(SECTION_SHIPPING))); |
1246 } | 1244 } |
1247 | 1245 |
(...skipping 1103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2351 AutofillDialogViews::DetailsGroup::DetailsGroup(DialogSection section) | 2349 AutofillDialogViews::DetailsGroup::DetailsGroup(DialogSection section) |
2352 : section(section), | 2350 : section(section), |
2353 container(NULL), | 2351 container(NULL), |
2354 manual_input(NULL), | 2352 manual_input(NULL), |
2355 suggested_info(NULL), | 2353 suggested_info(NULL), |
2356 suggested_button(NULL) {} | 2354 suggested_button(NULL) {} |
2357 | 2355 |
2358 AutofillDialogViews::DetailsGroup::~DetailsGroup() {} | 2356 AutofillDialogViews::DetailsGroup::~DetailsGroup() {} |
2359 | 2357 |
2360 } // namespace autofill | 2358 } // namespace autofill |
OLD | NEW |