From d757998ae5825be7a119b75c3cb4da713fd2dd40 Mon Sep 17 00:00:00 2001 From: "mseaborn@chromium.org" Date: Wed, 2 May 2012 19:37:11 +0000 Subject: NaCl: Remove unused process ID/handle arguments from launch_nacl_process() This cleanup has been made possible by moving sel_ldr_launcher_chrome.cc into the Chromium repo. BUG=http://code.google.com/p/nativeclient/issues/detail?id=2750 TEST=build Review URL: https://chromiumcodereview.appspot.com/10267027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134967 0039d316-1c4b-4281-b951-d872f2087c98 --- ppapi/c/private/ppb_nacl_private.h | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to 'ppapi/c') diff --git a/ppapi/c/private/ppb_nacl_private.h b/ppapi/c/private/ppb_nacl_private.h index 939f37f..1dcc9ee 100644 --- a/ppapi/c/private/ppb_nacl_private.h +++ b/ppapi/c/private/ppb_nacl_private.h @@ -8,19 +8,16 @@ #include "ppapi/c/pp_resource.h" #include "ppapi/c/pp_stdint.h" -#define PPB_NACL_PRIVATE_INTERFACE "PPB_NaCl(Private);0.3" +#define PPB_NACL_PRIVATE_INTERFACE "PPB_NaCl(Private);0.4" struct PPB_NaCl_Private { // This function launches NaCl's sel_ldr process. On success, the function // returns true, otherwise it returns false. When it returns true, it will - // write |socket_count| nacl::Handles to imc_handles and will write the - // nacl::Handle of the created process to |nacl_process_handle|. Finally, - // the function will write the process ID of the created process to - // |nacl_process_id|. Unless EnableBackgroundSelLdrLaunch is called, this - // method must be invoked from the main thread. + // write |socket_count| nacl::Handles to imc_handles. Unless + // EnableBackgroundSelLdrLaunch is called, this method must be invoked from + // the main thread. bool (*LaunchSelLdr)(const char* alleged_url, int socket_count, - void* imc_handles, void* nacl_process_handle, - int* nacl_process_id); + void* imc_handles); // On POSIX systems, this function returns the file descriptor of // /dev/urandom. On non-POSIX systems, this function returns 0. -- cgit v1.1