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

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

Issue 322403005: Pepper: Remove nacl_entry_points.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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
(Empty)
1 /*
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
4 * found in the LICENSE file.
5 */
6
7 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NACL_ENTRY_POINTS_H_
8 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NACL_ENTRY_POINTS_H_
9
10 #include <stddef.h>
11
12 #include <map>
13 #include <string>
14
15 #include "native_client/src/shared/imc/nacl_imc_c.h"
16 #include "ppapi/c/pp_completion_callback.h"
17 #include "ppapi/c/pp_instance.h"
18 #include "ppapi/c/private/ppb_instance_private.h"
19 #include "ppapi/c/private/ppb_nacl_private.h"
20
21 typedef PP_ExternalPluginResult (*LaunchNaClProcessFunc)(
22 PP_Instance instance,
23 PP_Bool main_service_runtime,
24 const char* alleged_url,
25 PP_Bool uses_irt,
26 PP_Bool uses_ppapi,
27 PP_Bool uses_nonsfi_mode,
28 PP_Bool enable_ppapi_dev,
29 PP_Bool enable_dyncode_syscalls,
30 PP_Bool enable_exception_handling,
31 PP_Bool enable_crash_throttling,
32 const PPP_ManifestService* manifest_service_interface,
33 void* manifest_service_user_data,
34 NaClHandle* result_socket,
35 PP_CompletionCallback callback);
36
37 extern LaunchNaClProcessFunc launch_nacl_process;
38
39 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NACL_ENTRY_POINTS_H_
OLDNEW
« no previous file with comments | « ppapi/native_client/src/trusted/plugin/module_ppapi.cc ('k') | ppapi/native_client/src/trusted/plugin/plugin.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698