| 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 1139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |