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

Side by Side Diff: chrome/common/nacl_host_messages.h

Issue 16881004: Move chrome/nacl to components/nacl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Create a zygote folder Created 7 years, 5 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
« no previous file with comments | « chrome/common/nacl_helper_linux.h ('k') | chrome/common/nacl_messages.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 // Multiply-included file, no traditional include guard. 5 // Multiply-included file, no traditional include guard.
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/process.h" 10 #include "base/process.h"
11 #include "build/build_config.h" 11 #include "build/build_config.h"
12 #include "chrome/common/common_param_traits.h" 12 #include "chrome/common/common_param_traits.h"
13 #include "chrome/common/nacl_types.h" 13 #include "components/nacl/common/nacl_types.h"
14 #include "content/public/common/common_param_traits.h" 14 #include "content/public/common/common_param_traits.h"
15 #include "googleurl/src/gurl.h" 15 #include "googleurl/src/gurl.h"
16 #include "ipc/ipc_channel_handle.h" 16 #include "ipc/ipc_channel_handle.h"
17 #include "ipc/ipc_message_macros.h" 17 #include "ipc/ipc_message_macros.h"
18 #include "ipc/ipc_platform_file.h" 18 #include "ipc/ipc_platform_file.h"
19 19
20 #define IPC_MESSAGE_START NaClHostMsgStart 20 #define IPC_MESSAGE_START NaClHostMsgStart
21 21
22 IPC_STRUCT_TRAITS_BEGIN(nacl::NaClLaunchParams) 22 IPC_STRUCT_TRAITS_BEGIN(nacl::NaClLaunchParams)
23 IPC_STRUCT_TRAITS_MEMBER(manifest_url) 23 IPC_STRUCT_TRAITS_MEMBER(manifest_url)
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 int /* Error ID */) 56 int /* Error ID */)
57 57
58 // A renderer sends this to the browser process when it wants to 58 // A renderer sends this to the browser process when it wants to
59 // open a NaCl executable file from an installed application directory. 59 // open a NaCl executable file from an installed application directory.
60 IPC_SYNC_MESSAGE_CONTROL2_3(NaClHostMsg_OpenNaClExecutable, 60 IPC_SYNC_MESSAGE_CONTROL2_3(NaClHostMsg_OpenNaClExecutable,
61 int /* render_view_id */, 61 int /* render_view_id */,
62 GURL /* URL of NaCl executable file */, 62 GURL /* URL of NaCl executable file */,
63 IPC::PlatformFileForTransit /* output file */, 63 IPC::PlatformFileForTransit /* output file */,
64 uint64 /* file_token_lo */, 64 uint64 /* file_token_lo */,
65 uint64 /* file_token_hi */) 65 uint64 /* file_token_hi */)
OLDNEW
« no previous file with comments | « chrome/common/nacl_helper_linux.h ('k') | chrome/common/nacl_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698