mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
66 lines
2.1 KiB
C++
66 lines
2.1 KiB
C++
#ifndef __NS_INSTALLTRIGGER_H__
|
|
#define __NS_INSTALLTRIGGER_H__
|
|
|
|
#include "nscore.h"
|
|
#include "nsString.h"
|
|
#include "nsIFactory.h"
|
|
#include "nsISupports.h"
|
|
#include "nsIScriptObjectOwner.h"
|
|
|
|
#include "prtypes.h"
|
|
#include "nsHashtable.h"
|
|
|
|
#include "nsIDOMInstallTriggerGlobal.h"
|
|
#include "nsXPITriggerInfo.h"
|
|
|
|
#include "nsIContentHandler.h"
|
|
|
|
#define NOT_CHROME 0
|
|
#define CHROME_SKIN 1
|
|
#define CHROME_LOCALE 2
|
|
#define CHROME_SAFEMAX CHROME_SKIN
|
|
#define CHROME_CONTENT 4
|
|
#define CHROME_ALL (CHROME_SKIN | CHROME_LOCALE | CHROME_CONTENT)
|
|
#define CHROME_PROFILE 8
|
|
#define CHROME_DELAYED 0x10
|
|
#define CHROME_SELECT 0x20
|
|
|
|
#define XPI_PERMISSION "install"
|
|
|
|
#define XPI_WHITELIST PR_TRUE
|
|
#define XPI_GLOBAL PR_FALSE
|
|
|
|
#define XPINSTALL_ENABLE_PREF "xpinstall.enabled"
|
|
#define XPINSTALL_WHITELIST_ADD "xpinstall.whitelist.add"
|
|
#define XPINSTALL_WHITELIST_ADD_36 "xpinstall.whitelist.add.36"
|
|
#define XPINSTALL_WHITELIST_REQUIRED "xpinstall.whitelist.required"
|
|
#define XPINSTALL_BLACKLIST_ADD "xpinstall.blacklist.add"
|
|
|
|
class nsInstallTrigger: public nsIScriptObjectOwner,
|
|
public nsIDOMInstallTriggerGlobal,
|
|
public nsIContentHandler
|
|
{
|
|
public:
|
|
nsInstallTrigger();
|
|
virtual ~nsInstallTrigger();
|
|
|
|
NS_DECL_ISUPPORTS
|
|
NS_DECL_NSICONTENTHANDLER
|
|
|
|
NS_IMETHOD GetScriptObject(nsIScriptContext *aContext, void** aScriptObject);
|
|
NS_IMETHOD SetScriptObject(void* aScriptObject);
|
|
|
|
NS_IMETHOD GetOriginatingURI(nsIScriptGlobalObject* aGlobalObject, nsIURI * *aUri);
|
|
NS_IMETHOD UpdateEnabled(nsIScriptGlobalObject* aGlobalObject, PRBool aUseWhitelist, PRBool* aReturn);
|
|
NS_IMETHOD UpdateEnabled(nsIURI* aURI, PRBool aUseWhitelist, PRBool* aReturn);
|
|
NS_IMETHOD StartInstall(nsIXPIInstallInfo* aInstallInfo, PRBool* aReturn);
|
|
|
|
|
|
private:
|
|
PRBool AllowInstall(nsIURI* aLaunchURI);
|
|
void *mScriptObject;
|
|
};
|
|
|
|
#define NS_INSTALLTRIGGERCOMPONENT_CONTRACTID "@mozilla.org/xpinstall/installtrigger;1"
|
|
#endif
|