Copy as Markdown
Other Tools
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM $SRCDIR/dom/quota/nsIQuotaManagerServiceInternal.idl
*/
#ifndef __gen_nsIQuotaManagerServiceInternal_h__
#define __gen_nsIQuotaManagerServiceInternal_h__
#include "nsISupports.h"
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
/* starting interface: nsIQuotaManagerServiceInternal */
#define NS_IQUOTAMANAGERSERVICEINTERNAL_IID_STR "7df37702-e977-4107-9b1d-289439e7d37b"
#define NS_IQUOTAMANAGERSERVICEINTERNAL_IID \
{0x7df37702, 0xe977, 0x4107, \
{ 0x9b, 0x1d, 0x28, 0x94, 0x39, 0xe7, 0xd3, 0x7b }}
class NS_NO_VTABLE nsIQuotaManagerServiceInternal : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IQUOTAMANAGERSERVICEINTERNAL_IID)
/* Used by ToJSValue to check which scriptable interface is implemented. */
using ScriptableInterfaceType = nsIQuotaManagerServiceInternal;
/* void setThumbnailPrivateIdentityId (in unsigned long aThumbnailPrivateIdentityId); */
NS_IMETHOD SetThumbnailPrivateIdentityId(uint32_t aThumbnailPrivateIdentityId) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIQuotaManagerServiceInternal, NS_IQUOTAMANAGERSERVICEINTERNAL_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIQUOTAMANAGERSERVICEINTERNAL \
NS_IMETHOD SetThumbnailPrivateIdentityId(uint32_t aThumbnailPrivateIdentityId) override;
/* Use this macro when declaring the members of this interface when the
class doesn't implement the interface. This is useful for forwarding. */
#define NS_DECL_NON_VIRTUAL_NSIQUOTAMANAGERSERVICEINTERNAL \
nsresult SetThumbnailPrivateIdentityId(uint32_t aThumbnailPrivateIdentityId);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIQUOTAMANAGERSERVICEINTERNAL(_to) \
NS_IMETHOD SetThumbnailPrivateIdentityId(uint32_t aThumbnailPrivateIdentityId) override { return _to SetThumbnailPrivateIdentityId(aThumbnailPrivateIdentityId); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIQUOTAMANAGERSERVICEINTERNAL(_to) \
NS_IMETHOD SetThumbnailPrivateIdentityId(uint32_t aThumbnailPrivateIdentityId) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetThumbnailPrivateIdentityId(aThumbnailPrivateIdentityId); }
#endif /* __gen_nsIQuotaManagerServiceInternal_h__ */