diff options
author | mseaborn@chromium.org <mseaborn@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-02 19:37:11 +0000 |
---|---|---|
committer | mseaborn@chromium.org <mseaborn@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-02 19:37:11 +0000 |
commit | d757998ae5825be7a119b75c3cb4da713fd2dd40 (patch) | |
tree | 034b8d5a3b64d1cf7ac9f78fc7326b109fec06e1 /ppapi/c | |
parent | 19de27cee58c3922c4df30871fd047568d10fc20 (diff) | |
download | chromium_src-d757998ae5825be7a119b75c3cb4da713fd2dd40.zip chromium_src-d757998ae5825be7a119b75c3cb4da713fd2dd40.tar.gz chromium_src-d757998ae5825be7a119b75c3cb4da713fd2dd40.tar.bz2 |
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
Diffstat (limited to 'ppapi/c')
-rw-r--r-- | ppapi/c/private/ppb_nacl_private.h | 13 |
1 files changed, 5 insertions, 8 deletions
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. |