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

Side by Side Diff: components/nacl/common/nacl_messages.h

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
« no previous file with comments | « components/nacl/common/nacl_host_messages.h ('k') | components/nacl/common/nacl_types.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 // 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 // from the browser, including the file's path as well as a fresh version of the 83 // from the browser, including the file's path as well as a fresh version of the
84 // file handle. 84 // file handle.
85 IPC_SYNC_MESSAGE_CONTROL2_2(NaClProcessMsg_ResolveFileToken, 85 IPC_SYNC_MESSAGE_CONTROL2_2(NaClProcessMsg_ResolveFileToken,
86 uint64, /* file_token_lo */ 86 uint64, /* file_token_lo */
87 uint64, /* file_token_hi */ 87 uint64, /* file_token_hi */
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_CONTROL3(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 */)
OLDNEW
« no previous file with comments | « components/nacl/common/nacl_host_messages.h ('k') | components/nacl/common/nacl_types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698