| Index: ppapi/api/private/ppb_nacl_private.idl
|
| diff --git a/ppapi/api/private/ppb_nacl_private.idl b/ppapi/api/private/ppb_nacl_private.idl
|
| index f3416a8ffa75c4717769d0b5ee3e9e145703a6c8..5bdeebc1f5708411756854c0348e9b1dd06e5b38 100644
|
| --- a/ppapi/api/private/ppb_nacl_private.idl
|
| +++ b/ppapi/api/private/ppb_nacl_private.idl
|
| @@ -276,13 +276,6 @@ interface PPB_NaCl_Private {
|
| [in] uint64_t loaded_bytes,
|
| [in] uint64_t total_bytes);
|
|
|
| - /* Sets a read-only property on the <embed> DOM element that corresponds to
|
| - * the given instance.
|
| - */
|
| - void SetReadOnlyProperty([in] PP_Instance instance,
|
| - [in] PP_Var key,
|
| - [in] PP_Var value);
|
| -
|
| /* Report that the nexe loaded successfully. */
|
| void ReportLoadSuccess([in] PP_Instance instance,
|
| [in] str_t url,
|
| @@ -348,4 +341,11 @@ interface PPB_NaCl_Private {
|
| /* Sets the time the nexe became ready. */
|
| void SetReadyTime([in] PP_Instance instance,
|
| [in] int64_t ready_time);
|
| +
|
| + /* Returns the exit status of the plugin process. */
|
| + int32_t GetExitStatus([in] PP_Instance instance);
|
| +
|
| + /* Sets the exit status of the plugin process. */
|
| + void SetExitStatus([in] PP_Instance instance,
|
| + [in] int32_t exit_status);
|
| };
|
|
|