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

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

Issue 1731483003: chrome: Add out-of-line copy ctors for complex classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
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 <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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698