Copy as Markdown

Other Tools

/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM $SRCDIR/browser/components/shell/nsIGNOMEShellService.idl
*/
#ifndef __gen_nsIGNOMEShellService_h__
#define __gen_nsIGNOMEShellService_h__
#include "nsIShellService.h"
#include "js/GCAnnotations.h"
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
/* starting interface: nsIGNOMEShellService */
#define NS_IGNOMESHELLSERVICE_IID_STR "2ce5c803-edcd-443d-98eb-ceba86d02d13"
#define NS_IGNOMESHELLSERVICE_IID \
{0x2ce5c803, 0xedcd, 0x443d, \
{ 0x98, 0xeb, 0xce, 0xba, 0x86, 0xd0, 0x2d, 0x13 }}
class NS_NO_VTABLE nsIGNOMEShellService : public nsIShellService {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IGNOMESHELLSERVICE_IID)
/* Used by ToJSValue to check which scriptable interface is implemented. */
using ScriptableInterfaceType = nsIGNOMEShellService;
/* readonly attribute boolean canSetDesktopBackground; */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD GetCanSetDesktopBackground(bool *aCanSetDesktopBackground) = 0;
/* boolean isDefaultForScheme (in AUTF8String aScheme); */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD IsDefaultForScheme(const nsACString& aScheme, bool *_retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIGNOMEShellService, NS_IGNOMESHELLSERVICE_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIGNOMESHELLSERVICE \
NS_IMETHOD GetCanSetDesktopBackground(bool *aCanSetDesktopBackground) override; \
NS_IMETHOD IsDefaultForScheme(const nsACString& aScheme, bool *_retval) 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_NSIGNOMESHELLSERVICE \
nsresult GetCanSetDesktopBackground(bool *aCanSetDesktopBackground); \
nsresult IsDefaultForScheme(const nsACString& aScheme, bool *_retval);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIGNOMESHELLSERVICE(_to) \
NS_IMETHOD GetCanSetDesktopBackground(bool *aCanSetDesktopBackground) override { return _to GetCanSetDesktopBackground(aCanSetDesktopBackground); } \
NS_IMETHOD IsDefaultForScheme(const nsACString& aScheme, bool *_retval) override { return _to IsDefaultForScheme(aScheme, _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_NSIGNOMESHELLSERVICE(_to) \
NS_IMETHOD GetCanSetDesktopBackground(bool *aCanSetDesktopBackground) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCanSetDesktopBackground(aCanSetDesktopBackground); } \
NS_IMETHOD IsDefaultForScheme(const nsACString& aScheme, bool *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->IsDefaultForScheme(aScheme, _retval); }
#endif /* __gen_nsIGNOMEShellService_h__ */