/usr/include/thunderbird/nsIDOMJSWindow.h is in thunderbird-dev 1:38.6.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 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIDOMJSWindow.idl
*/
#ifndef __gen_nsIDOMJSWindow_h__
#define __gen_nsIDOMJSWindow_h__
#ifndef __gen_domstubs_h__
#include "domstubs.h"
#endif
#include "js/Value.h"
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
/* starting interface: nsIDOMJSWindow */
#define NS_IDOMJSWINDOW_IID_STR "4237c376-d637-4b6e-9f8a-1da57e867834"
#define NS_IDOMJSWINDOW_IID \
{0x4237c376, 0xd637, 0x4b6e, \
{ 0x9f, 0x8a, 0x1d, 0xa5, 0x7e, 0x86, 0x78, 0x34 }}
class NS_NO_VTABLE nsIDOMJSWindow : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMJSWINDOW_IID)
/* void dump (in DOMString str); */
NS_IMETHOD Dump(const nsAString & str) = 0;
/* long setTimeout (); */
NS_IMETHOD SetTimeout(int32_t *_retval) = 0;
/* long setInterval (); */
NS_IMETHOD SetInterval(int32_t *_retval) = 0;
/* void clearTimeout ([optional] in long handle); */
NS_IMETHOD ClearTimeout(int32_t handle) = 0;
/* void clearInterval ([optional] in long handle); */
NS_IMETHOD ClearInterval(int32_t handle) = 0;
/* void setResizable (in boolean resizable); */
NS_IMETHOD SetResizable(bool resizable) = 0;
/* void captureEvents (); */
NS_IMETHOD CaptureEvents(void) = 0;
/* void releaseEvents (); */
NS_IMETHOD ReleaseEvents(void) = 0;
/* [binaryname(OpenJS)] nsIDOMWindow open ([optional] in DOMString url, [optional] in DOMString name, [optional] in DOMString options); */
NS_IMETHOD OpenJS(const nsAString & url, const nsAString & name, const nsAString & options, nsIDOMWindow * *_retval) = 0;
/* nsIDOMWindow openDialog ([optional] in DOMString url, [optional] in DOMString name, [optional] in DOMString options); */
NS_IMETHOD OpenDialog(const nsAString & url, const nsAString & name, const nsAString & options, nsIDOMWindow * *_retval) = 0;
/* readonly attribute nsIDOMWindow frames; */
NS_IMETHOD GetFrames(nsIDOMWindow * *aFrames) = 0;
/* [binaryname(ScriptableContent),implicit_jscontext] readonly attribute jsval content; */
NS_IMETHOD GetScriptableContent(JSContext* cx, JS::MutableHandleValue aContent) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMJSWindow, NS_IDOMJSWINDOW_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMJSWINDOW \
NS_IMETHOD Dump(const nsAString & str) override; \
NS_IMETHOD SetTimeout(int32_t *_retval) override; \
NS_IMETHOD SetInterval(int32_t *_retval) override; \
NS_IMETHOD ClearTimeout(int32_t handle) override; \
NS_IMETHOD ClearInterval(int32_t handle) override; \
NS_IMETHOD SetResizable(bool resizable) override; \
NS_IMETHOD CaptureEvents(void) override; \
NS_IMETHOD ReleaseEvents(void) override; \
NS_IMETHOD OpenJS(const nsAString & url, const nsAString & name, const nsAString & options, nsIDOMWindow * *_retval) override; \
NS_IMETHOD OpenDialog(const nsAString & url, const nsAString & name, const nsAString & options, nsIDOMWindow * *_retval) override; \
NS_IMETHOD GetFrames(nsIDOMWindow * *aFrames) override; \
NS_IMETHOD GetScriptableContent(JSContext* cx, JS::MutableHandleValue aContent) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMJSWINDOW(_to) \
NS_IMETHOD Dump(const nsAString & str) override { return _to Dump(str); } \
NS_IMETHOD SetTimeout(int32_t *_retval) override { return _to SetTimeout(_retval); } \
NS_IMETHOD SetInterval(int32_t *_retval) override { return _to SetInterval(_retval); } \
NS_IMETHOD ClearTimeout(int32_t handle) override { return _to ClearTimeout(handle); } \
NS_IMETHOD ClearInterval(int32_t handle) override { return _to ClearInterval(handle); } \
NS_IMETHOD SetResizable(bool resizable) override { return _to SetResizable(resizable); } \
NS_IMETHOD CaptureEvents(void) override { return _to CaptureEvents(); } \
NS_IMETHOD ReleaseEvents(void) override { return _to ReleaseEvents(); } \
NS_IMETHOD OpenJS(const nsAString & url, const nsAString & name, const nsAString & options, nsIDOMWindow * *_retval) override { return _to OpenJS(url, name, options, _retval); } \
NS_IMETHOD OpenDialog(const nsAString & url, const nsAString & name, const nsAString & options, nsIDOMWindow * *_retval) override { return _to OpenDialog(url, name, options, _retval); } \
NS_IMETHOD GetFrames(nsIDOMWindow * *aFrames) override { return _to GetFrames(aFrames); } \
NS_IMETHOD GetScriptableContent(JSContext* cx, JS::MutableHandleValue aContent) override { return _to GetScriptableContent(cx, aContent); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMJSWINDOW(_to) \
NS_IMETHOD Dump(const nsAString & str) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Dump(str); } \
NS_IMETHOD SetTimeout(int32_t *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetTimeout(_retval); } \
NS_IMETHOD SetInterval(int32_t *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetInterval(_retval); } \
NS_IMETHOD ClearTimeout(int32_t handle) override { return !_to ? NS_ERROR_NULL_POINTER : _to->ClearTimeout(handle); } \
NS_IMETHOD ClearInterval(int32_t handle) override { return !_to ? NS_ERROR_NULL_POINTER : _to->ClearInterval(handle); } \
NS_IMETHOD SetResizable(bool resizable) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetResizable(resizable); } \
NS_IMETHOD CaptureEvents(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->CaptureEvents(); } \
NS_IMETHOD ReleaseEvents(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->ReleaseEvents(); } \
NS_IMETHOD OpenJS(const nsAString & url, const nsAString & name, const nsAString & options, nsIDOMWindow * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OpenJS(url, name, options, _retval); } \
NS_IMETHOD OpenDialog(const nsAString & url, const nsAString & name, const nsAString & options, nsIDOMWindow * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OpenDialog(url, name, options, _retval); } \
NS_IMETHOD GetFrames(nsIDOMWindow * *aFrames) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFrames(aFrames); } \
NS_IMETHOD GetScriptableContent(JSContext* cx, JS::MutableHandleValue aContent) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetScriptableContent(cx, aContent); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMJSWindow : public nsIDOMJSWindow
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMJSWINDOW
nsDOMJSWindow();
private:
~nsDOMJSWindow();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsDOMJSWindow, nsIDOMJSWindow)
nsDOMJSWindow::nsDOMJSWindow()
{
/* member initializers and constructor code */
}
nsDOMJSWindow::~nsDOMJSWindow()
{
/* destructor code */
}
/* void dump (in DOMString str); */
NS_IMETHODIMP nsDOMJSWindow::Dump(const nsAString & str)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* long setTimeout (); */
NS_IMETHODIMP nsDOMJSWindow::SetTimeout(int32_t *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* long setInterval (); */
NS_IMETHODIMP nsDOMJSWindow::SetInterval(int32_t *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void clearTimeout ([optional] in long handle); */
NS_IMETHODIMP nsDOMJSWindow::ClearTimeout(int32_t handle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void clearInterval ([optional] in long handle); */
NS_IMETHODIMP nsDOMJSWindow::ClearInterval(int32_t handle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setResizable (in boolean resizable); */
NS_IMETHODIMP nsDOMJSWindow::SetResizable(bool resizable)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void captureEvents (); */
NS_IMETHODIMP nsDOMJSWindow::CaptureEvents()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void releaseEvents (); */
NS_IMETHODIMP nsDOMJSWindow::ReleaseEvents()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [binaryname(OpenJS)] nsIDOMWindow open ([optional] in DOMString url, [optional] in DOMString name, [optional] in DOMString options); */
NS_IMETHODIMP nsDOMJSWindow::OpenJS(const nsAString & url, const nsAString & name, const nsAString & options, nsIDOMWindow * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMWindow openDialog ([optional] in DOMString url, [optional] in DOMString name, [optional] in DOMString options); */
NS_IMETHODIMP nsDOMJSWindow::OpenDialog(const nsAString & url, const nsAString & name, const nsAString & options, nsIDOMWindow * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIDOMWindow frames; */
NS_IMETHODIMP nsDOMJSWindow::GetFrames(nsIDOMWindow * *aFrames)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [binaryname(ScriptableContent),implicit_jscontext] readonly attribute jsval content; */
NS_IMETHODIMP nsDOMJSWindow::GetScriptableContent(JSContext* cx, JS::MutableHandleValue aContent)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMJSWindow_h__ */
|