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

Unified Diff: components/nacl/common/nacl_types.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/nacl/common/nacl_types.cc
diff --git a/components/nacl/common/nacl_types.cc b/components/nacl/common/nacl_types.cc
index 996d2523de244e5eb95e0017bc0b96358d292fc7..dbb421b86c89df94492e9a40e010a23da819edd1 100644
--- a/components/nacl/common/nacl_types.cc
+++ b/components/nacl/common/nacl_types.cc
@@ -23,6 +23,8 @@ NaClStartParams::NaClStartParams()
crash_info_shmem_handle(base::SharedMemory::NULLHandle()) {
}
+NaClStartParams::NaClStartParams(const NaClStartParams& other) = default;
+
NaClStartParams::~NaClStartParams() {
}
@@ -83,6 +85,8 @@ NaClLaunchParams::NaClLaunchParams(
uses_nonsfi_mode(uses_nonsfi_mode),
process_type(process_type) {}
+NaClLaunchParams::NaClLaunchParams(const NaClLaunchParams& other) = default;
+
NaClLaunchParams::~NaClLaunchParams() {
}

Powered by Google App Engine
This is Rietveld 408576698