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

Unified Diff: components/guest_view/browser/guest_view_manager.cc

Issue 1728033002: components: 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 side-by-side diff with in-line comments
Download patch
Index: components/guest_view/browser/guest_view_manager.cc
diff --git a/components/guest_view/browser/guest_view_manager.cc b/components/guest_view/browser/guest_view_manager.cc
index 0a8afb067b1732b3e32309176940246d61f97212..73593921052fa9dec2ef5441da40091c212200cb 100644
--- a/components/guest_view/browser/guest_view_manager.cc
+++ b/components/guest_view/browser/guest_view_manager.cc
@@ -493,6 +493,9 @@ GuestViewManager::GuestViewData::GuestViewData(
const GuestViewCleanUpFunction& cleanup_function)
: create_function(create_function), cleanup_function(cleanup_function) {}
+GuestViewManager::GuestViewData::GuestViewData(const GuestViewData& other) =
+ default;
+
GuestViewManager::GuestViewData::~GuestViewData() {}
} // namespace guest_view

Powered by Google App Engine
This is Rietveld 408576698