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

Side by Side Diff: components/nacl/common/nacl_types.cc

Issue 231793003: Add IPC Channel for new ManifestService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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()
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 ppapi_ipc_channel_handle(), 64 ppapi_ipc_channel_handle(),
65 trusted_ipc_channel_handle(), 65 trusted_ipc_channel_handle(),
66 plugin_pid(base::kNullProcessId), 66 plugin_pid(base::kNullProcessId),
67 plugin_child_id(0) { 67 plugin_child_id(0) {
68 } 68 }
69 69
70 NaClLaunchResult::NaClLaunchResult( 70 NaClLaunchResult::NaClLaunchResult(
71 FileDescriptor imc_channel_handle, 71 FileDescriptor imc_channel_handle,
72 const IPC::ChannelHandle& ppapi_ipc_channel_handle, 72 const IPC::ChannelHandle& ppapi_ipc_channel_handle,
73 const IPC::ChannelHandle& trusted_ipc_channel_handle, 73 const IPC::ChannelHandle& trusted_ipc_channel_handle,
74 const IPC::ChannelHandle& embedder_service_ipc_channel_handle,
74 base::ProcessId plugin_pid, 75 base::ProcessId plugin_pid,
75 int plugin_child_id) 76 int plugin_child_id)
76 : imc_channel_handle(imc_channel_handle), 77 : imc_channel_handle(imc_channel_handle),
77 ppapi_ipc_channel_handle(ppapi_ipc_channel_handle), 78 ppapi_ipc_channel_handle(ppapi_ipc_channel_handle),
78 trusted_ipc_channel_handle(trusted_ipc_channel_handle), 79 trusted_ipc_channel_handle(trusted_ipc_channel_handle),
80 embedder_service_ipc_channel_handle(
81 embedder_service_ipc_channel_handle),
79 plugin_pid(plugin_pid), 82 plugin_pid(plugin_pid),
80 plugin_child_id(plugin_child_id) { 83 plugin_child_id(plugin_child_id) {
81 } 84 }
82 85
83 NaClLaunchResult::~NaClLaunchResult() { 86 NaClLaunchResult::~NaClLaunchResult() {
84 } 87 }
85 88
86 } // namespace nacl 89 } // namespace nacl
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698