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

Side by Side Diff: ppapi/native_client/src/trusted/plugin/nacl_entry_points.h

Issue 19828007: Hide knowledge of webkit::ppapi::Plugin from chrome. This is part of moving ppapi implementation fr… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: nits Created 7 years, 4 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 | « ppapi/c/private/ppb_nacl_private.h ('k') | ppapi/native_client/src/trusted/plugin/plugin.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NACL_ENTRY_POINTS_H_ 7 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NACL_ENTRY_POINTS_H_
8 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NACL_ENTRY_POINTS_H_ 8 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NACL_ENTRY_POINTS_H_
9 9
10 #include <stddef.h> 10 #include <stddef.h>
11 11
12 #include <map> 12 #include <map>
13 #include <string> 13 #include <string>
14 14
15 #include "native_client/src/shared/imc/nacl_imc_c.h" 15 #include "native_client/src/shared/imc/nacl_imc_c.h"
16 #include "ppapi/c/pp_instance.h" 16 #include "ppapi/c/pp_instance.h"
17 #include "ppapi/c/private/ppb_nacl_private.h" 17 #include "ppapi/c/private/ppb_instance_private.h"
18 18
19 typedef PP_NaClResult (*LaunchNaClProcessFunc)( 19 typedef PP_ExternalPluginResult (*LaunchNaClProcessFunc)(
20 PP_Instance instance, 20 PP_Instance instance,
21 const char* alleged_url, 21 const char* alleged_url,
22 PP_Bool uses_irt, 22 PP_Bool uses_irt,
23 PP_Bool uses_ppapi, 23 PP_Bool uses_ppapi,
24 PP_Bool enable_ppapi_dev, 24 PP_Bool enable_ppapi_dev,
25 PP_Bool enable_dyncode_syscalls, 25 PP_Bool enable_dyncode_syscalls,
26 PP_Bool enable_exception_handling, 26 PP_Bool enable_exception_handling,
27 NaClHandle* result_socket, 27 NaClHandle* result_socket,
28 struct PP_Var* error_message); 28 struct PP_Var* error_message);
29 29
30 30
31 extern LaunchNaClProcessFunc launch_nacl_process; 31 extern LaunchNaClProcessFunc launch_nacl_process;
32 32
33 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NACL_ENTRY_POINTS_H_ 33 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NACL_ENTRY_POINTS_H_
OLDNEW
« no previous file with comments | « ppapi/c/private/ppb_nacl_private.h ('k') | ppapi/native_client/src/trusted/plugin/plugin.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698