|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/21571/root/usr/include/xulrunner-17.0.10/ |
Upload File : |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /builddir/build/BUILD/xulrunner-17.0.10/mozilla-esr17/dom/interfaces/base/nsIContentPermissionPrompt.idl
*/
#ifndef __gen_nsIContentPermissionPrompt_h__
#define __gen_nsIContentPermissionPrompt_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIPrincipal; /* forward declaration */
class nsIDOMWindow; /* forward declaration */
class nsIDOMElement; /* forward declaration */
/* starting interface: nsIContentPermissionRequest */
#define NS_ICONTENTPERMISSIONREQUEST_IID_STR "e1f3796c-adfa-414b-b2a7-ac62f29395ee"
#define NS_ICONTENTPERMISSIONREQUEST_IID \
{0xe1f3796c, 0xadfa, 0x414b, \
{ 0xb2, 0xa7, 0xac, 0x62, 0xf2, 0x93, 0x95, 0xee }}
class NS_NO_VTABLE nsIContentPermissionRequest : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ICONTENTPERMISSIONREQUEST_IID)
/* readonly attribute ACString type; */
NS_IMETHOD GetType(nsACString & aType) = 0;
/* readonly attribute nsIPrincipal principal; */
NS_IMETHOD GetPrincipal(nsIPrincipal * *aPrincipal) = 0;
/* readonly attribute nsIDOMWindow window; */
NS_IMETHOD GetWindow(nsIDOMWindow * *aWindow) = 0;
/* readonly attribute nsIDOMElement element; */
NS_IMETHOD GetElement(nsIDOMElement * *aElement) = 0;
/* void cancel (); */
NS_IMETHOD Cancel(void) = 0;
/* void allow (); */
NS_IMETHOD Allow(void) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIContentPermissionRequest, NS_ICONTENTPERMISSIONREQUEST_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSICONTENTPERMISSIONREQUEST \
NS_IMETHOD GetType(nsACString & aType); \
NS_IMETHOD GetPrincipal(nsIPrincipal * *aPrincipal); \
NS_IMETHOD GetWindow(nsIDOMWindow * *aWindow); \
NS_IMETHOD GetElement(nsIDOMElement * *aElement); \
NS_IMETHOD Cancel(void); \
NS_IMETHOD Allow(void);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSICONTENTPERMISSIONREQUEST(_to) \
NS_IMETHOD GetType(nsACString & aType) { return _to GetType(aType); } \
NS_IMETHOD GetPrincipal(nsIPrincipal * *aPrincipal) { return _to GetPrincipal(aPrincipal); } \
NS_IMETHOD GetWindow(nsIDOMWindow * *aWindow) { return _to GetWindow(aWindow); } \
NS_IMETHOD GetElement(nsIDOMElement * *aElement) { return _to GetElement(aElement); } \
NS_IMETHOD Cancel(void) { return _to Cancel(); } \
NS_IMETHOD Allow(void) { return _to Allow(); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSICONTENTPERMISSIONREQUEST(_to) \
NS_IMETHOD GetType(nsACString & aType) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetType(aType); } \
NS_IMETHOD GetPrincipal(nsIPrincipal * *aPrincipal) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPrincipal(aPrincipal); } \
NS_IMETHOD GetWindow(nsIDOMWindow * *aWindow) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetWindow(aWindow); } \
NS_IMETHOD GetElement(nsIDOMElement * *aElement) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetElement(aElement); } \
NS_IMETHOD Cancel(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->Cancel(); } \
NS_IMETHOD Allow(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->Allow(); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsContentPermissionRequest : public nsIContentPermissionRequest
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSICONTENTPERMISSIONREQUEST
nsContentPermissionRequest();
private:
~nsContentPermissionRequest();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsContentPermissionRequest, nsIContentPermissionRequest)
nsContentPermissionRequest::nsContentPermissionRequest()
{
/* member initializers and constructor code */
}
nsContentPermissionRequest::~nsContentPermissionRequest()
{
/* destructor code */
}
/* readonly attribute ACString type; */
NS_IMETHODIMP nsContentPermissionRequest::GetType(nsACString & aType)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIPrincipal principal; */
NS_IMETHODIMP nsContentPermissionRequest::GetPrincipal(nsIPrincipal * *aPrincipal)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIDOMWindow window; */
NS_IMETHODIMP nsContentPermissionRequest::GetWindow(nsIDOMWindow * *aWindow)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIDOMElement element; */
NS_IMETHODIMP nsContentPermissionRequest::GetElement(nsIDOMElement * *aElement)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void cancel (); */
NS_IMETHODIMP nsContentPermissionRequest::Cancel()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void allow (); */
NS_IMETHODIMP nsContentPermissionRequest::Allow()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
/* starting interface: nsIContentPermissionPrompt */
#define NS_ICONTENTPERMISSIONPROMPT_IID_STR "f72de90d-e954-4e69-9a61-917303029301"
#define NS_ICONTENTPERMISSIONPROMPT_IID \
{0xf72de90d, 0xe954, 0x4e69, \
{ 0x9a, 0x61, 0x91, 0x73, 0x03, 0x02, 0x93, 0x01 }}
class NS_NO_VTABLE nsIContentPermissionPrompt : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ICONTENTPERMISSIONPROMPT_IID)
/* void prompt (in nsIContentPermissionRequest request); */
NS_IMETHOD Prompt(nsIContentPermissionRequest *request) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIContentPermissionPrompt, NS_ICONTENTPERMISSIONPROMPT_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSICONTENTPERMISSIONPROMPT \
NS_IMETHOD Prompt(nsIContentPermissionRequest *request);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSICONTENTPERMISSIONPROMPT(_to) \
NS_IMETHOD Prompt(nsIContentPermissionRequest *request) { return _to Prompt(request); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSICONTENTPERMISSIONPROMPT(_to) \
NS_IMETHOD Prompt(nsIContentPermissionRequest *request) { return !_to ? NS_ERROR_NULL_POINTER : _to->Prompt(request); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsContentPermissionPrompt : public nsIContentPermissionPrompt
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSICONTENTPERMISSIONPROMPT
nsContentPermissionPrompt();
private:
~nsContentPermissionPrompt();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsContentPermissionPrompt, nsIContentPermissionPrompt)
nsContentPermissionPrompt::nsContentPermissionPrompt()
{
/* member initializers and constructor code */
}
nsContentPermissionPrompt::~nsContentPermissionPrompt()
{
/* destructor code */
}
/* void prompt (in nsIContentPermissionRequest request); */
NS_IMETHODIMP nsContentPermissionPrompt::Prompt(nsIContentPermissionRequest *request)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#define NS_CONTENT_PERMISSION_PROMPT_CONTRACTID "@mozilla.org/content-permission/prompt;1"
#endif /* __gen_nsIContentPermissionPrompt_h__ */