| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/nacl/common/nacl_types.h" | 5 #include "components/nacl/common/nacl_types.h" |
| 6 #include "ipc/ipc_platform_file.h" | 6 #include "ipc/ipc_platform_file.h" |
| 7 | 7 |
| 8 namespace nacl { | 8 namespace nacl { |
| 9 | 9 |
| 10 NaClStartParams::NaClStartParams() | 10 NaClStartParams::NaClStartParams() |
| 11 : validation_cache_enabled(false), | 11 : validation_cache_enabled(false), |
| 12 enable_exception_handling(false), | 12 enable_exception_handling(false), |
| 13 enable_debug_stub(false), | 13 enable_debug_stub(false), |
| 14 enable_ipc_proxy(false), | 14 enable_ipc_proxy(false), |
| 15 uses_irt(false), | 15 uses_irt(false), |
| 16 enable_dyncode_syscalls(false), | 16 enable_dyncode_syscalls(false) { |
| 17 uses_nonsfi_mode(false) { | |
| 18 } | 17 } |
| 19 | 18 |
| 20 NaClStartParams::~NaClStartParams() { | 19 NaClStartParams::~NaClStartParams() { |
| 21 } | 20 } |
| 22 | 21 |
| 23 NaClLaunchParams::NaClLaunchParams() | 22 NaClLaunchParams::NaClLaunchParams() |
| 24 : render_view_id(0), | 23 : render_view_id(0), |
| 25 permission_bits(0), | 24 permission_bits(0), |
| 26 uses_irt(false), | 25 uses_irt(false), |
| 27 enable_dyncode_syscalls(false), | 26 enable_dyncode_syscalls(false), |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 ppapi_ipc_channel_handle(ppapi_ipc_channel_handle), | 77 ppapi_ipc_channel_handle(ppapi_ipc_channel_handle), |
| 79 trusted_ipc_channel_handle(trusted_ipc_channel_handle), | 78 trusted_ipc_channel_handle(trusted_ipc_channel_handle), |
| 80 plugin_pid(plugin_pid), | 79 plugin_pid(plugin_pid), |
| 81 plugin_child_id(plugin_child_id) { | 80 plugin_child_id(plugin_child_id) { |
| 82 } | 81 } |
| 83 | 82 |
| 84 NaClLaunchResult::~NaClLaunchResult() { | 83 NaClLaunchResult::~NaClLaunchResult() { |
| 85 } | 84 } |
| 86 | 85 |
| 87 } // namespace nacl | 86 } // namespace nacl |
| OLD | NEW |