diff options
author | teravest@chromium.org <teravest@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-27 21:10:59 +0000 |
---|---|---|
committer | teravest@chromium.org <teravest@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-27 21:10:59 +0000 |
commit | 427e3a280b2a02aac8ec8a515cc909150a032854 (patch) | |
tree | 907416175c121e0241053c3a740b3ab740efcfc5 /ppapi/api | |
parent | bfa7124dd7528c533413671e7c59ac6f756dd1ce (diff) | |
download | chromium_src-427e3a280b2a02aac8ec8a515cc909150a032854.zip chromium_src-427e3a280b2a02aac8ec8a515cc909150a032854.tar.gz chromium_src-427e3a280b2a02aac8ec8a515cc909150a032854.tar.bz2 |
Pepper: Move is_installed state to NexeLoadManager.
This will make it easier to move more code out of ppapi/native_client,
especially UMA/Histogram support.
BUG=239656
R=dmichael@chromium.org
Review URL: https://codereview.chromium.org/214973002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@259989 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/api')
-rw-r--r-- | ppapi/api/private/ppb_nacl_private.idl | 10 |
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); }; |