|
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/21585/root/usr/lib64/xulrunner-devel-17.0.10/include/ |
Upload File : |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /builddir/build/BUILD/xulrunner-17.0.10/mozilla-esr17/dom/interfaces/storage/nsIDOMStorageManager.idl
*/
#ifndef __gen_nsIDOMStorageManager_h__
#define __gen_nsIDOMStorageManager_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 nsIDOMStorage; /* forward declaration */
class nsIPrincipal; /* forward declaration */
/* starting interface: nsIDOMStorageManager */
#define NS_IDOMSTORAGEMANAGER_IID_STR "1541da6c-a9fb-4a8f-af9d-4493c981491d"
#define NS_IDOMSTORAGEMANAGER_IID \
{0x1541da6c, 0xa9fb, 0x4a8f, \
{ 0xaf, 0x9d, 0x44, 0x93, 0xc9, 0x81, 0x49, 0x1d }}
class NS_NO_VTABLE nsIDOMStorageManager : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMSTORAGEMANAGER_IID)
/* long getUsage (in AString aOwnerDomain); */
NS_IMETHOD GetUsage(const nsAString & aOwnerDomain, int32_t *_retval) = 0;
/* void clearOfflineApps (); */
NS_IMETHOD ClearOfflineApps(void) = 0;
/* nsIDOMStorage getLocalStorageForPrincipal (in nsIPrincipal aPrincipal, in DOMString aDocumentURI, [optional] in bool aPrivate); */
NS_IMETHOD GetLocalStorageForPrincipal(nsIPrincipal *aPrincipal, const nsAString & aDocumentURI, bool aPrivate, nsIDOMStorage * *_retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMStorageManager, NS_IDOMSTORAGEMANAGER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMSTORAGEMANAGER \
NS_IMETHOD GetUsage(const nsAString & aOwnerDomain, int32_t *_retval); \
NS_IMETHOD ClearOfflineApps(void); \
NS_IMETHOD GetLocalStorageForPrincipal(nsIPrincipal *aPrincipal, const nsAString & aDocumentURI, bool aPrivate, nsIDOMStorage * *_retval);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMSTORAGEMANAGER(_to) \
NS_IMETHOD GetUsage(const nsAString & aOwnerDomain, int32_t *_retval) { return _to GetUsage(aOwnerDomain, _retval); } \
NS_IMETHOD ClearOfflineApps(void) { return _to ClearOfflineApps(); } \
NS_IMETHOD GetLocalStorageForPrincipal(nsIPrincipal *aPrincipal, const nsAString & aDocumentURI, bool aPrivate, nsIDOMStorage * *_retval) { return _to GetLocalStorageForPrincipal(aPrincipal, aDocumentURI, aPrivate, _retval); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMSTORAGEMANAGER(_to) \
NS_IMETHOD GetUsage(const nsAString & aOwnerDomain, int32_t *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetUsage(aOwnerDomain, _retval); } \
NS_IMETHOD ClearOfflineApps(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->ClearOfflineApps(); } \
NS_IMETHOD GetLocalStorageForPrincipal(nsIPrincipal *aPrincipal, const nsAString & aDocumentURI, bool aPrivate, nsIDOMStorage * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLocalStorageForPrincipal(aPrincipal, aDocumentURI, aPrivate, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMStorageManager : public nsIDOMStorageManager
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMSTORAGEMANAGER
nsDOMStorageManager();
private:
~nsDOMStorageManager();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDOMStorageManager, nsIDOMStorageManager)
nsDOMStorageManager::nsDOMStorageManager()
{
/* member initializers and constructor code */
}
nsDOMStorageManager::~nsDOMStorageManager()
{
/* destructor code */
}
/* long getUsage (in AString aOwnerDomain); */
NS_IMETHODIMP nsDOMStorageManager::GetUsage(const nsAString & aOwnerDomain, int32_t *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void clearOfflineApps (); */
NS_IMETHODIMP nsDOMStorageManager::ClearOfflineApps()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMStorage getLocalStorageForPrincipal (in nsIPrincipal aPrincipal, in DOMString aDocumentURI, [optional] in bool aPrivate); */
NS_IMETHODIMP nsDOMStorageManager::GetLocalStorageForPrincipal(nsIPrincipal *aPrincipal, const nsAString & aDocumentURI, bool aPrivate, nsIDOMStorage * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMStorageManager_h__ */