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

Unified Diff: components/nacl/common/pnacl_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/pnacl_types.cc
diff --git a/components/nacl/common/pnacl_types.cc b/components/nacl/common/pnacl_types.cc
index 49c4659e95d5ff4632e58353e41940e361d3de6e..82ef2ee26c9b3587bd2c237b0b6fcec35c174d3a 100644
--- a/components/nacl/common/pnacl_types.cc
+++ b/components/nacl/common/pnacl_types.cc
@@ -9,6 +9,7 @@ namespace nacl {
PnaclCacheInfo::PnaclCacheInfo()
: abi_version(0), opt_level(0), has_no_store_header(0), use_subzero(false) {
}
+PnaclCacheInfo::PnaclCacheInfo(const PnaclCacheInfo& other) = default;
PnaclCacheInfo::~PnaclCacheInfo() {}
} // namespace nacl

Powered by Google App Engine
This is Rietveld 408576698