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

Side by Side Diff: ppapi/c/private/ppb_nacl_private.h

Issue 10214007: Add an IPC channel between the NaCl loader process and the renderer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 7 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef PPAPI_C_PRIVATE_PPB_NACL_UTIL_PRIVATE_H_ 5 #ifndef PPAPI_C_PRIVATE_PPB_NACL_UTIL_PRIVATE_H_
6 #define PPAPI_C_PRIVATE_PPB_NACL_UTIL_PRIVATE_H_ 6 #define PPAPI_C_PRIVATE_PPB_NACL_UTIL_PRIVATE_H_
7 7
8 #include "ppapi/c/pp_bool.h"
9 #include "ppapi/c/pp_instance.h"
8 #include "ppapi/c/pp_resource.h" 10 #include "ppapi/c/pp_resource.h"
9 #include "ppapi/c/pp_stdint.h" 11 #include "ppapi/c/pp_stdint.h"
10 12
11 #define PPB_NACL_PRIVATE_INTERFACE "PPB_NaCl(Private);0.4" 13 #define PPB_NACL_PRIVATE_INTERFACE "PPB_NaCl(Private);0.5"
12 14
13 struct PPB_NaCl_Private { 15 struct PPB_NaCl_Private {
14 // This function launches NaCl's sel_ldr process. On success, the function 16 // This function launches NaCl's sel_ldr process. On success, the function
15 // returns true, otherwise it returns false. When it returns true, it will 17 // returns true, otherwise it returns false. When it returns true, it will
16 // write |socket_count| nacl::Handles to imc_handles. Unless 18 // write |socket_count| nacl::Handles to imc_handles. Unless
17 // EnableBackgroundSelLdrLaunch is called, this method must be invoked from 19 // EnableBackgroundSelLdrLaunch is called, this method must be invoked from
18 // the main thread. 20 // the main thread.
19 bool (*LaunchSelLdr)(const char* alleged_url, int socket_count, 21 PP_Bool (*LaunchSelLdr)(PP_Instance instance,
20 void* imc_handles); 22 const char* alleged_url,
23 int socket_count,
24 void* imc_handles);
25
26 // This function starts the PPAPI proxy so the nexe can communicate with the
27 // browser's renderer process.
28 PP_Bool (*StartPpapiProxy)(PP_Instance instance);
21 29
22 // On POSIX systems, this function returns the file descriptor of 30 // On POSIX systems, this function returns the file descriptor of
23 // /dev/urandom. On non-POSIX systems, this function returns 0. 31 // /dev/urandom. On non-POSIX systems, this function returns 0.
24 int (*UrandomFD)(void); 32 int (*UrandomFD)(void);
25 33
26 // Whether the Pepper 3D interfaces should be disabled in the NaCl PPAPI 34 // Whether the Pepper 3D interfaces should be disabled in the NaCl PPAPI
27 // proxy. This is so paranoid admins can effectively prevent untrusted shader 35 // proxy. This is so paranoid admins can effectively prevent untrusted shader
28 // code to be processed by the graphics stack. 36 // code to be processed by the graphics stack.
29 bool (*Are3DInterfacesDisabled)(); 37 bool (*Are3DInterfacesDisabled)();
30 38
(...skipping 11 matching lines...) Expand all
42 // usable with NaClSetBrokerDuplicateHandleFunc() without further 50 // usable with NaClSetBrokerDuplicateHandleFunc() without further
43 // wrapping. 51 // wrapping.
44 int (*BrokerDuplicateHandle)(void* source_handle, 52 int (*BrokerDuplicateHandle)(void* source_handle,
45 uint32_t process_id, 53 uint32_t process_id,
46 void** target_handle, 54 void** target_handle,
47 uint32_t desired_access, 55 uint32_t desired_access,
48 uint32_t options); 56 uint32_t options);
49 }; 57 };
50 58
51 #endif // PPAPI_C_PRIVATE_PPB_NACL_PRIVATE_H_ 59 #endif // PPAPI_C_PRIVATE_PPB_NACL_PRIVATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698