/usr/include/thunderbird/nsISystemMessagesInternal.h is in thunderbird-dev 1:24.4.0+build1-0ubuntu1.
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 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /build/buildd/thunderbird-24.4.0+build1/mozilla/dom/messages/interfaces/nsISystemMessagesInternal.idl
*/
#ifndef __gen_nsISystemMessagesInternal_h__
#define __gen_nsISystemMessagesInternal_h__
#ifndef __gen_domstubs_h__
#include "domstubs.h"
#endif
#include "jspubtd.h"
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIURI; /* forward declaration */
class nsIDOMWindow; /* forward declaration */
/* starting interface: nsISystemMessagesInternal */
#define NS_ISYSTEMMESSAGESINTERNAL_IID_STR "d8de761a-94fe-44d5-80eb-3c8bd8cd7d0b"
#define NS_ISYSTEMMESSAGESINTERNAL_IID \
{0xd8de761a, 0x94fe, 0x44d5, \
{ 0x80, 0xeb, 0x3c, 0x8b, 0xd8, 0xcd, 0x7d, 0x0b }}
class NS_NO_VTABLE nsISystemMessagesInternal : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISYSTEMMESSAGESINTERNAL_IID)
/* void sendMessage (in DOMString type, in jsval message, in nsIURI pageURI, in nsIURI manifestURI); */
NS_IMETHOD SendMessage(const nsAString & type, const JS::Value & message, nsIURI *pageURI, nsIURI *manifestURI) = 0;
/* void broadcastMessage (in DOMString type, in jsval message); */
NS_IMETHOD BroadcastMessage(const nsAString & type, const JS::Value & message) = 0;
/* void registerPage (in DOMString type, in nsIURI pageURI, in nsIURI manifestURI); */
NS_IMETHOD RegisterPage(const nsAString & type, nsIURI *pageURI, nsIURI *manifestURI) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsISystemMessagesInternal, NS_ISYSTEMMESSAGESINTERNAL_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSISYSTEMMESSAGESINTERNAL \
NS_IMETHOD SendMessage(const nsAString & type, const JS::Value & message, nsIURI *pageURI, nsIURI *manifestURI); \
NS_IMETHOD BroadcastMessage(const nsAString & type, const JS::Value & message); \
NS_IMETHOD RegisterPage(const nsAString & type, nsIURI *pageURI, nsIURI *manifestURI);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSISYSTEMMESSAGESINTERNAL(_to) \
NS_IMETHOD SendMessage(const nsAString & type, const JS::Value & message, nsIURI *pageURI, nsIURI *manifestURI) { return _to SendMessage(type, message, pageURI, manifestURI); } \
NS_IMETHOD BroadcastMessage(const nsAString & type, const JS::Value & message) { return _to BroadcastMessage(type, message); } \
NS_IMETHOD RegisterPage(const nsAString & type, nsIURI *pageURI, nsIURI *manifestURI) { return _to RegisterPage(type, pageURI, manifestURI); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSISYSTEMMESSAGESINTERNAL(_to) \
NS_IMETHOD SendMessage(const nsAString & type, const JS::Value & message, nsIURI *pageURI, nsIURI *manifestURI) { return !_to ? NS_ERROR_NULL_POINTER : _to->SendMessage(type, message, pageURI, manifestURI); } \
NS_IMETHOD BroadcastMessage(const nsAString & type, const JS::Value & message) { return !_to ? NS_ERROR_NULL_POINTER : _to->BroadcastMessage(type, message); } \
NS_IMETHOD RegisterPage(const nsAString & type, nsIURI *pageURI, nsIURI *manifestURI) { return !_to ? NS_ERROR_NULL_POINTER : _to->RegisterPage(type, pageURI, manifestURI); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsSystemMessagesInternal : public nsISystemMessagesInternal
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSISYSTEMMESSAGESINTERNAL
nsSystemMessagesInternal();
private:
~nsSystemMessagesInternal();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsSystemMessagesInternal, nsISystemMessagesInternal)
nsSystemMessagesInternal::nsSystemMessagesInternal()
{
/* member initializers and constructor code */
}
nsSystemMessagesInternal::~nsSystemMessagesInternal()
{
/* destructor code */
}
/* void sendMessage (in DOMString type, in jsval message, in nsIURI pageURI, in nsIURI manifestURI); */
NS_IMETHODIMP nsSystemMessagesInternal::SendMessage(const nsAString & type, const JS::Value & message, nsIURI *pageURI, nsIURI *manifestURI)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void broadcastMessage (in DOMString type, in jsval message); */
NS_IMETHODIMP nsSystemMessagesInternal::BroadcastMessage(const nsAString & type, const JS::Value & message)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void registerPage (in DOMString type, in nsIURI pageURI, in nsIURI manifestURI); */
NS_IMETHODIMP nsSystemMessagesInternal::RegisterPage(const nsAString & type, nsIURI *pageURI, nsIURI *manifestURI)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
/* starting interface: nsISystemMessagesWrapper */
#define NS_ISYSTEMMESSAGESWRAPPER_IID_STR "002f0e82-91f0-41de-ad43-569a2b9d12df"
#define NS_ISYSTEMMESSAGESWRAPPER_IID \
{0x002f0e82, 0x91f0, 0x41de, \
{ 0xad, 0x43, 0x56, 0x9a, 0x2b, 0x9d, 0x12, 0xdf }}
class NS_NO_VTABLE nsISystemMessagesWrapper : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISYSTEMMESSAGESWRAPPER_IID)
/* jsval wrapMessage (in jsval message, in nsIDOMWindow window); */
NS_IMETHOD WrapMessage(const JS::Value & message, nsIDOMWindow *window, JS::Value *_retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsISystemMessagesWrapper, NS_ISYSTEMMESSAGESWRAPPER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSISYSTEMMESSAGESWRAPPER \
NS_IMETHOD WrapMessage(const JS::Value & message, nsIDOMWindow *window, JS::Value *_retval);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSISYSTEMMESSAGESWRAPPER(_to) \
NS_IMETHOD WrapMessage(const JS::Value & message, nsIDOMWindow *window, JS::Value *_retval) { return _to WrapMessage(message, window, _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_NSISYSTEMMESSAGESWRAPPER(_to) \
NS_IMETHOD WrapMessage(const JS::Value & message, nsIDOMWindow *window, JS::Value *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->WrapMessage(message, window, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsSystemMessagesWrapper : public nsISystemMessagesWrapper
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSISYSTEMMESSAGESWRAPPER
nsSystemMessagesWrapper();
private:
~nsSystemMessagesWrapper();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsSystemMessagesWrapper, nsISystemMessagesWrapper)
nsSystemMessagesWrapper::nsSystemMessagesWrapper()
{
/* member initializers and constructor code */
}
nsSystemMessagesWrapper::~nsSystemMessagesWrapper()
{
/* destructor code */
}
/* jsval wrapMessage (in jsval message, in nsIDOMWindow window); */
NS_IMETHODIMP nsSystemMessagesWrapper::WrapMessage(const JS::Value & message, nsIDOMWindow *window, JS::Value *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsISystemMessagesInternal_h__ */
|