| Index: components/nacl/common/nacl_types.cc
|
| diff --git a/components/nacl/common/nacl_types.cc b/components/nacl/common/nacl_types.cc
|
| index 0b096a65467e851fa2316380f06cf3e31c8f1495..f2c595146072f4bb4ab8b4fb2d5ae2d9430ec24a 100644
|
| --- a/components/nacl/common/nacl_types.cc
|
| +++ b/components/nacl/common/nacl_types.cc
|
| @@ -9,6 +9,8 @@ namespace nacl {
|
|
|
| NaClStartParams::NaClStartParams()
|
| : nexe_file(IPC::InvalidPlatformFileForTransit()),
|
| + nexe_token_lo(0),
|
| + nexe_token_hi(0),
|
| validation_cache_enabled(false),
|
| enable_exception_handling(false),
|
| enable_debug_stub(false),
|
| @@ -22,6 +24,8 @@ NaClStartParams::~NaClStartParams() {
|
|
|
| NaClLaunchParams::NaClLaunchParams()
|
| : nexe_file(IPC::InvalidPlatformFileForTransit()),
|
| + nexe_token_lo(0),
|
| + nexe_token_hi(0),
|
| render_view_id(0),
|
| permission_bits(0),
|
| uses_irt(false),
|
| @@ -33,6 +37,8 @@ NaClLaunchParams::NaClLaunchParams()
|
| NaClLaunchParams::NaClLaunchParams(
|
| const std::string& manifest_url,
|
| const IPC::PlatformFileForTransit& nexe_file,
|
| + uint64_t nexe_token_lo,
|
| + uint64_t nexe_token_hi,
|
| int render_view_id,
|
| uint32 permission_bits,
|
| bool uses_irt,
|
| @@ -42,6 +48,8 @@ NaClLaunchParams::NaClLaunchParams(
|
| bool enable_crash_throttling)
|
| : manifest_url(manifest_url),
|
| nexe_file(nexe_file),
|
| + nexe_token_lo(nexe_token_lo),
|
| + nexe_token_hi(nexe_token_hi),
|
| render_view_id(render_view_id),
|
| permission_bits(permission_bits),
|
| uses_irt(uses_irt),
|
| @@ -51,18 +59,6 @@ NaClLaunchParams::NaClLaunchParams(
|
| enable_crash_throttling(enable_crash_throttling) {
|
| }
|
|
|
| -NaClLaunchParams::NaClLaunchParams(const NaClLaunchParams& l)
|
| - : manifest_url(l.manifest_url),
|
| - nexe_file(l.nexe_file),
|
| - render_view_id(l.render_view_id),
|
| - permission_bits(l.permission_bits),
|
| - uses_irt(l.uses_irt),
|
| - uses_nonsfi_mode(l.uses_nonsfi_mode),
|
| - enable_dyncode_syscalls(l.enable_dyncode_syscalls),
|
| - enable_exception_handling(l.enable_exception_handling),
|
| - enable_crash_throttling(l.enable_crash_throttling) {
|
| -}
|
| -
|
| NaClLaunchParams::~NaClLaunchParams() {
|
| }
|
|
|
|
|