Index: components/nacl/common/nacl_types.cc |
diff --git a/components/nacl/common/nacl_types.cc b/components/nacl/common/nacl_types.cc |
index 4f6d36f12f2255920c5f1785d40653618e9efbda..837b79a094c565d54de35a09a84dcd48f5e6e817 100644 |
--- a/components/nacl/common/nacl_types.cc |
+++ b/components/nacl/common/nacl_types.cc |
@@ -52,65 +52,4 @@ NaClResourcePrefetchRequest::NaClResourcePrefetchRequest( |
NaClResourcePrefetchRequest::~NaClResourcePrefetchRequest() { |
} |
-NaClLaunchParams::NaClLaunchParams() |
- : nexe_file(IPC::InvalidPlatformFileForTransit()), |
- nexe_token_lo(0), |
- nexe_token_hi(0), |
- render_view_id(0), |
- permission_bits(0), |
- process_type(kUnknownNaClProcessType) { |
-} |
- |
-NaClLaunchParams::NaClLaunchParams( |
- const std::string& manifest_url, |
- const IPC::PlatformFileForTransit& nexe_file, |
- uint64_t nexe_token_lo, |
- uint64_t nexe_token_hi, |
- const std::vector<NaClResourcePrefetchRequest>& |
- resource_prefetch_request_list, |
- int render_view_id, |
- uint32_t permission_bits, |
- bool uses_nonsfi_mode, |
- NaClAppProcessType process_type) |
- : manifest_url(manifest_url), |
- nexe_file(nexe_file), |
- nexe_token_lo(nexe_token_lo), |
- nexe_token_hi(nexe_token_hi), |
- resource_prefetch_request_list(resource_prefetch_request_list), |
- render_view_id(render_view_id), |
- permission_bits(permission_bits), |
- uses_nonsfi_mode(uses_nonsfi_mode), |
- process_type(process_type) {} |
- |
-NaClLaunchParams::NaClLaunchParams(const NaClLaunchParams& other) = default; |
- |
-NaClLaunchParams::~NaClLaunchParams() { |
-} |
- |
-NaClLaunchResult::NaClLaunchResult() |
- : ppapi_ipc_channel_handle(), |
- trusted_ipc_channel_handle(), |
- plugin_pid(base::kNullProcessId), |
- plugin_child_id(0), |
- crash_info_shmem_handle(base::SharedMemory::NULLHandle()) { |
-} |
- |
-NaClLaunchResult::NaClLaunchResult( |
- const IPC::ChannelHandle& ppapi_ipc_channel_handle, |
- const IPC::ChannelHandle& trusted_ipc_channel_handle, |
- const IPC::ChannelHandle& manifest_service_ipc_channel_handle, |
- base::ProcessId plugin_pid, |
- int plugin_child_id, |
- base::SharedMemoryHandle crash_info_shmem_handle) |
- : ppapi_ipc_channel_handle(ppapi_ipc_channel_handle), |
- trusted_ipc_channel_handle(trusted_ipc_channel_handle), |
- manifest_service_ipc_channel_handle(manifest_service_ipc_channel_handle), |
- plugin_pid(plugin_pid), |
- plugin_child_id(plugin_child_id), |
- crash_info_shmem_handle(crash_info_shmem_handle) { |
-} |
- |
-NaClLaunchResult::~NaClLaunchResult() { |
-} |
- |
} // namespace nacl |