/usr/include/thunderbird-11.0.1/nsIPrivateBrowsingService.h is in thunderbird-dev 11.0.1+build1-0ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /build/buildd/thunderbird-11.0.1+build1/build-tree/mozilla/mozilla/netwerk/base/public/nsIPrivateBrowsingService.idl
*/
#ifndef __gen_nsIPrivateBrowsingService_h__
#define __gen_nsIPrivateBrowsingService_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
/* starting interface: nsIPrivateBrowsingService */
#define NS_IPRIVATEBROWSINGSERVICE_IID_STR "4b731983-9542-49f4-b16b-de68ad1c2068"
#define NS_IPRIVATEBROWSINGSERVICE_IID \
{0x4b731983, 0x9542, 0x49f4, \
{ 0xb1, 0x6b, 0xde, 0x68, 0xad, 0x1c, 0x20, 0x68 }}
class NS_NO_VTABLE NS_SCRIPTABLE nsIPrivateBrowsingService : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IPRIVATEBROWSINGSERVICE_IID)
/* attribute boolean privateBrowsingEnabled; */
NS_SCRIPTABLE NS_IMETHOD GetPrivateBrowsingEnabled(bool *aPrivateBrowsingEnabled) = 0;
NS_SCRIPTABLE NS_IMETHOD SetPrivateBrowsingEnabled(bool aPrivateBrowsingEnabled) = 0;
/* readonly attribute boolean autoStarted; */
NS_SCRIPTABLE NS_IMETHOD GetAutoStarted(bool *aAutoStarted) = 0;
/* readonly attribute boolean lastChangedByCommandLine; */
NS_SCRIPTABLE NS_IMETHOD GetLastChangedByCommandLine(bool *aLastChangedByCommandLine) = 0;
/* void removeDataFromDomain (in AUTF8String aDomain); */
NS_SCRIPTABLE NS_IMETHOD RemoveDataFromDomain(const nsACString & aDomain) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIPrivateBrowsingService, NS_IPRIVATEBROWSINGSERVICE_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIPRIVATEBROWSINGSERVICE \
NS_SCRIPTABLE NS_IMETHOD GetPrivateBrowsingEnabled(bool *aPrivateBrowsingEnabled); \
NS_SCRIPTABLE NS_IMETHOD SetPrivateBrowsingEnabled(bool aPrivateBrowsingEnabled); \
NS_SCRIPTABLE NS_IMETHOD GetAutoStarted(bool *aAutoStarted); \
NS_SCRIPTABLE NS_IMETHOD GetLastChangedByCommandLine(bool *aLastChangedByCommandLine); \
NS_SCRIPTABLE NS_IMETHOD RemoveDataFromDomain(const nsACString & aDomain);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIPRIVATEBROWSINGSERVICE(_to) \
NS_SCRIPTABLE NS_IMETHOD GetPrivateBrowsingEnabled(bool *aPrivateBrowsingEnabled) { return _to GetPrivateBrowsingEnabled(aPrivateBrowsingEnabled); } \
NS_SCRIPTABLE NS_IMETHOD SetPrivateBrowsingEnabled(bool aPrivateBrowsingEnabled) { return _to SetPrivateBrowsingEnabled(aPrivateBrowsingEnabled); } \
NS_SCRIPTABLE NS_IMETHOD GetAutoStarted(bool *aAutoStarted) { return _to GetAutoStarted(aAutoStarted); } \
NS_SCRIPTABLE NS_IMETHOD GetLastChangedByCommandLine(bool *aLastChangedByCommandLine) { return _to GetLastChangedByCommandLine(aLastChangedByCommandLine); } \
NS_SCRIPTABLE NS_IMETHOD RemoveDataFromDomain(const nsACString & aDomain) { return _to RemoveDataFromDomain(aDomain); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIPRIVATEBROWSINGSERVICE(_to) \
NS_SCRIPTABLE NS_IMETHOD GetPrivateBrowsingEnabled(bool *aPrivateBrowsingEnabled) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPrivateBrowsingEnabled(aPrivateBrowsingEnabled); } \
NS_SCRIPTABLE NS_IMETHOD SetPrivateBrowsingEnabled(bool aPrivateBrowsingEnabled) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPrivateBrowsingEnabled(aPrivateBrowsingEnabled); } \
NS_SCRIPTABLE NS_IMETHOD GetAutoStarted(bool *aAutoStarted) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAutoStarted(aAutoStarted); } \
NS_SCRIPTABLE NS_IMETHOD GetLastChangedByCommandLine(bool *aLastChangedByCommandLine) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLastChangedByCommandLine(aLastChangedByCommandLine); } \
NS_SCRIPTABLE NS_IMETHOD RemoveDataFromDomain(const nsACString & aDomain) { return !_to ? NS_ERROR_NULL_POINTER : _to->RemoveDataFromDomain(aDomain); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsPrivateBrowsingService : public nsIPrivateBrowsingService
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIPRIVATEBROWSINGSERVICE
nsPrivateBrowsingService();
private:
~nsPrivateBrowsingService();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsPrivateBrowsingService, nsIPrivateBrowsingService)
nsPrivateBrowsingService::nsPrivateBrowsingService()
{
/* member initializers and constructor code */
}
nsPrivateBrowsingService::~nsPrivateBrowsingService()
{
/* destructor code */
}
/* attribute boolean privateBrowsingEnabled; */
NS_IMETHODIMP nsPrivateBrowsingService::GetPrivateBrowsingEnabled(bool *aPrivateBrowsingEnabled)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsPrivateBrowsingService::SetPrivateBrowsingEnabled(bool aPrivateBrowsingEnabled)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean autoStarted; */
NS_IMETHODIMP nsPrivateBrowsingService::GetAutoStarted(bool *aAutoStarted)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean lastChangedByCommandLine; */
NS_IMETHODIMP nsPrivateBrowsingService::GetLastChangedByCommandLine(bool *aLastChangedByCommandLine)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void removeDataFromDomain (in AUTF8String aDomain); */
NS_IMETHODIMP nsPrivateBrowsingService::RemoveDataFromDomain(const nsACString & aDomain)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
/**
* Private Browsing service notifications:
*
* - NS_PRIVATE_BROWSING_REQUEST_TOPIC:
* The data parameter determines which kind of request this represents:
* --- NS_PRIVATE_BROWSING_ENTER:
* We send this notification before switching to the private browsing mode.
* The subject parameter is set to a nsISupportsPRBool, which observers can
* set to true to prevent the switch to the private browsing mode.
* --- NS_PRIVATE_BROWSING_LEAVE:
* We send this notification before leaving the private browsing mode.
* The subject parameter is set to a nsISupportsPRBool, which observers can
* set to true to prevent leaving the private browsing mode.
*
* - NS_PRIVATE_BROWSING_SWITCH_TOPIC:
* The data parameter determines which kind of switch this represents:
* --- NS_PRIVATE_BROWSING_ENTER:
* We send this notification while switching to the private browsing mode.
* --- NS_PRIVATE_BROWSING_LEAVE:
* We send this notification while leaving the private browsing mode.
*/
#define NS_PRIVATE_BROWSING_SWITCH_TOPIC "private-browsing"
#define NS_PRIVATE_BROWSING_REQUEST_TOPIC "private-browsing-cancel-vote"
#define NS_PRIVATE_BROWSING_ENTER "enter"
#define NS_PRIVATE_BROWSING_LEAVE "exit"
#endif /* __gen_nsIPrivateBrowsingService_h__ */
|