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

Unified Diff: ppapi/c/private/ppb_nacl_private.h

Issue 222203003: Pepper: Move exit_status to NexeLoadManager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix tests Created 6 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/api/private/ppb_nacl_private.idl ('k') | ppapi/native_client/src/trusted/plugin/plugin.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/private/ppb_nacl_private.h
diff --git a/ppapi/c/private/ppb_nacl_private.h b/ppapi/c/private/ppb_nacl_private.h
index 709f9587a8f28675aee3d6686e68397b75a935e0..ddf4418fbcf3e5a3d5017a30904cc6ec6408e582 100644
--- a/ppapi/c/private/ppb_nacl_private.h
+++ b/ppapi/c/private/ppb_nacl_private.h
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
-/* From private/ppb_nacl_private.idl modified Mon Mar 31 13:29:26 2014. */
+/* From private/ppb_nacl_private.idl modified Wed Apr 2 10:41:10 2014. */
#ifndef PPAPI_C_PRIVATE_PPB_NACL_PRIVATE_H_
#define PPAPI_C_PRIVATE_PPB_NACL_PRIVATE_H_
@@ -284,12 +284,6 @@ struct PPB_NaCl_Private_1_0 {
PP_Bool length_is_computable,
uint64_t loaded_bytes,
uint64_t total_bytes);
- /* Sets a read-only property on the <embed> DOM element that corresponds to
- * the given instance.
- */
- void (*SetReadOnlyProperty)(PP_Instance instance,
- struct PP_Var key,
- struct PP_Var value);
/* Report that the nexe loaded successfully. */
void (*ReportLoadSuccess)(PP_Instance instance,
const char* url,
@@ -335,6 +329,10 @@ struct PPB_NaCl_Private_1_0 {
int64_t (*GetReadyTime)(PP_Instance instance);
/* Sets the time the nexe became ready. */
void (*SetReadyTime)(PP_Instance instance, int64_t ready_time);
+ /* Returns the exit status of the plugin process. */
+ int32_t (*GetExitStatus)(PP_Instance instance);
+ /* Sets the exit status of the plugin process. */
+ void (*SetExitStatus)(PP_Instance instance, int32_t exit_status);
};
typedef struct PPB_NaCl_Private_1_0 PPB_NaCl_Private;
« no previous file with comments | « ppapi/api/private/ppb_nacl_private.idl ('k') | ppapi/native_client/src/trusted/plugin/plugin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698