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 // Defines messages between the browser and NaCl process. | 5 // Defines messages between the browser and NaCl process. |
6 | 6 |
7 // Multiply-included message file, no traditional include guard. | 7 // Multiply-included message file, no traditional include guard. |
8 #include "base/process/process.h" | 8 #include "base/process/process.h" |
9 #include "components/nacl/common/nacl_types.h" | 9 #include "components/nacl/common/nacl_types.h" |
10 #include "ipc/ipc_channel_handle.h" | 10 #include "ipc/ipc_channel_handle.h" |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
88 IPC::PlatformFileForTransit, /* fd */ | 88 IPC::PlatformFileForTransit, /* fd */ |
89 base::FilePath /* Path opened to get fd */) | 89 base::FilePath /* Path opened to get fd */) |
90 | 90 |
91 // Notify the browser process that the server side of the PPAPI channel was | 91 // Notify the browser process that the server side of the PPAPI channel was |
92 // created successfully. | 92 // created successfully. |
93 IPC_MESSAGE_CONTROL4(NaClProcessHostMsg_PpapiChannelsCreated, | 93 IPC_MESSAGE_CONTROL4(NaClProcessHostMsg_PpapiChannelsCreated, |
94 IPC::ChannelHandle, /* browser_channel_handle */ | 94 IPC::ChannelHandle, /* browser_channel_handle */ |
95 IPC::ChannelHandle, /* ppapi_renderer_channel_handle */ | 95 IPC::ChannelHandle, /* ppapi_renderer_channel_handle */ |
96 IPC::ChannelHandle, /* trusted_renderer_channel_handle */ | 96 IPC::ChannelHandle, /* trusted_renderer_channel_handle */ |
97 IPC::ChannelHandle /* manifest_service_channel_handle */) | 97 IPC::ChannelHandle /* manifest_service_channel_handle */) |
98 | |
99 // Notify the browser process that the debug stub port has been selected. | |
Mark Seaborn
2014/05/08 15:52:23
How about "Notify the browser process that the NaC
bradn
2014/05/08 17:00:24
Done.
| |
100 IPC_MESSAGE_CONTROL1(NaClProcessHostMsg_DebugStubPortSelected, | |
Mark Seaborn
2014/05/08 15:52:23
This can be conditionalised on OS_WIN, and go afte
bradn
2014/05/08 17:00:24
Done.
| |
101 uint16_t /* debug_stub_port */) | |
OLD | NEW |