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

Unified Diff: components/nacl/common/nacl_types.h

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.h
diff --git a/components/nacl/common/nacl_types.h b/components/nacl/common/nacl_types.h
index b904879dbb95cd8b5c337871111372af008a6050..1d942cd77eb82aea11dcf34503ea4e05385fa2bf 100644
--- a/components/nacl/common/nacl_types.h
+++ b/components/nacl/common/nacl_types.h
@@ -67,6 +67,7 @@ struct NaClResourcePrefetchResult {
// Parameters sent to the NaCl process when we start it.
struct NaClStartParams {
NaClStartParams();
+ NaClStartParams(const NaClStartParams& other);
~NaClStartParams();
IPC::PlatformFileForTransit nexe_file;
@@ -128,6 +129,7 @@ struct NaClLaunchParams {
uint32_t permission_bits,
bool uses_nonsfi_mode,
NaClAppProcessType process_type);
+ NaClLaunchParams(const NaClLaunchParams& other);
~NaClLaunchParams();
std::string manifest_url;

Powered by Google App Engine
This is Rietveld 408576698