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

Unified Diff: ppapi/api/private/ppb_nacl_private.idl

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 | « components/nacl/renderer/ppb_nacl_private_impl.cc ('k') | ppapi/c/private/ppb_nacl_private.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
};
« no previous file with comments | « components/nacl/renderer/ppb_nacl_private_impl.cc ('k') | ppapi/c/private/ppb_nacl_private.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698