| 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 <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <utility> | 9 #include <utility> |
| 10 | 10 |
| (...skipping 1891 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1902 return scrollable_area_; | 1902 return scrollable_area_; |
| 1903 } | 1903 } |
| 1904 | 1904 |
| 1905 AutofillDialogViews::DetailsGroup::DetailsGroup(DialogSection section) | 1905 AutofillDialogViews::DetailsGroup::DetailsGroup(DialogSection section) |
| 1906 : section(section), | 1906 : section(section), |
| 1907 container(NULL), | 1907 container(NULL), |
| 1908 manual_input(NULL), | 1908 manual_input(NULL), |
| 1909 suggested_info(NULL), | 1909 suggested_info(NULL), |
| 1910 suggested_button(NULL) {} | 1910 suggested_button(NULL) {} |
| 1911 | 1911 |
| 1912 AutofillDialogViews::DetailsGroup::DetailsGroup(const DetailsGroup& other) = |
| 1913 default; |
| 1914 |
| 1912 AutofillDialogViews::DetailsGroup::~DetailsGroup() {} | 1915 AutofillDialogViews::DetailsGroup::~DetailsGroup() {} |
| 1913 | 1916 |
| 1914 } // namespace autofill | 1917 } // namespace autofill |
| OLD | NEW |