summaryrefslogtreecommitdiffstats
path: root/ppapi/api
diff options
context:
space:
mode:
Diffstat (limited to 'ppapi/api')
-rw-r--r--ppapi/api/private/ppb_nacl_private.idl10
1 files changed, 8 insertions, 2 deletions
diff --git a/ppapi/api/private/ppb_nacl_private.idl b/ppapi/api/private/ppb_nacl_private.idl
index c1e88c7..193916c 100644
--- a/ppapi/api/private/ppb_nacl_private.idl
+++ b/ppapi/api/private/ppb_nacl_private.idl
@@ -287,8 +287,7 @@ interface PPB_NaCl_Private {
void ReportLoadError([in] PP_Instance instance,
[in] PP_NaClError error,
[in] str_t error_message,
- [in] str_t console_message,
- [in] PP_Bool is_installed);
+ [in] str_t console_message);
/* Performs internal setup when an instance is created. */
void InstanceCreated([in] PP_Instance instance);
@@ -326,4 +325,11 @@ interface PPB_NaCl_Private {
/* Sets the NaCl readiness status for this instance. */
void SetNaClReadyState([in] PP_Instance instance,
[in] PP_NaClReadyState ready_state);
+
+ /* Returns true if the plugin is an installed app. */
+ PP_Bool GetIsInstalled([in] PP_Instance instance);
+
+ /* Sets whether the plugin is an installed app. */
+ void SetIsInstalled([in] PP_Instance instance,
+ [in] PP_Bool is_installed);
};