/usr/include/thunderbird/nsIJSON.h is in thunderbird-dev 1:52.8.0-1~deb8u1.
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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIJSON.idl
*/
#ifndef __gen_nsIJSON_h__
#define __gen_nsIJSON_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
class nsIInputStream; /* forward declaration */
class nsIOutputStream; /* forward declaration */
class nsIScriptGlobalObject; /* forward declaration */
#include "js/TypeDecls.h"
/* starting interface: nsIJSON */
#define NS_IJSON_IID_STR "083aebb0-7790-43b2-ae81-9e404e626236"
#define NS_IJSON_IID \
{0x083aebb0, 0x7790, 0x43b2, \
{ 0xae, 0x81, 0x9e, 0x40, 0x4e, 0x62, 0x62, 0x36 }}
class NS_NO_VTABLE nsIJSON : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IJSON_IID)
/* [deprecated,implicit_jscontext,optional_argc] AString encode ([optional] in jsval value); */
NS_IMETHOD Encode(JS::HandleValue value, JSContext* cx, uint8_t _argc, nsAString & _retval) = 0;
/* [deprecated,implicit_jscontext,optional_argc] void encodeToStream (in nsIOutputStream stream, in string charset, in boolean writeBOM, [optional] in jsval value); */
NS_IMETHOD EncodeToStream(nsIOutputStream *stream, const char * charset, bool writeBOM, JS::HandleValue value, JSContext* cx, uint8_t _argc) = 0;
/* [deprecated,implicit_jscontext] jsval decode (in AString str); */
NS_IMETHOD Decode(const nsAString & str, JSContext* cx, JS::MutableHandleValue _retval) = 0;
/* [implicit_jscontext] jsval decodeFromStream (in nsIInputStream stream, in long contentLength); */
NS_IMETHOD DecodeFromStream(nsIInputStream *stream, int32_t contentLength, JSContext* cx, JS::MutableHandleValue _retval) = 0;
/* [noscript] AString encodeFromJSVal (in JSValPtr value, in JSContext cx); */
NS_IMETHOD EncodeFromJSVal(JS::Value *value, JSContext *cx, nsAString & _retval) = 0;
/* [noscript] jsval decodeToJSVal (in AString str, in JSContext cx); */
NS_IMETHOD DecodeToJSVal(const nsAString & str, JSContext *cx, JS::MutableHandleValue _retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIJSON, NS_IJSON_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIJSON \
NS_IMETHOD Encode(JS::HandleValue value, JSContext* cx, uint8_t _argc, nsAString & _retval) override; \
NS_IMETHOD EncodeToStream(nsIOutputStream *stream, const char * charset, bool writeBOM, JS::HandleValue value, JSContext* cx, uint8_t _argc) override; \
NS_IMETHOD Decode(const nsAString & str, JSContext* cx, JS::MutableHandleValue _retval) override; \
NS_IMETHOD DecodeFromStream(nsIInputStream *stream, int32_t contentLength, JSContext* cx, JS::MutableHandleValue _retval) override; \
NS_IMETHOD EncodeFromJSVal(JS::Value *value, JSContext *cx, nsAString & _retval) override; \
NS_IMETHOD DecodeToJSVal(const nsAString & str, JSContext *cx, JS::MutableHandleValue _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_NSIJSON \
NS_METHOD Encode(JS::HandleValue value, JSContext* cx, uint8_t _argc, nsAString & _retval); \
NS_METHOD EncodeToStream(nsIOutputStream *stream, const char * charset, bool writeBOM, JS::HandleValue value, JSContext* cx, uint8_t _argc); \
NS_METHOD Decode(const nsAString & str, JSContext* cx, JS::MutableHandleValue _retval); \
NS_METHOD DecodeFromStream(nsIInputStream *stream, int32_t contentLength, JSContext* cx, JS::MutableHandleValue _retval); \
NS_METHOD EncodeFromJSVal(JS::Value *value, JSContext *cx, nsAString & _retval); \
NS_METHOD DecodeToJSVal(const nsAString & str, JSContext *cx, JS::MutableHandleValue _retval);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIJSON(_to) \
NS_IMETHOD Encode(JS::HandleValue value, JSContext* cx, uint8_t _argc, nsAString & _retval) override { return _to Encode(value, cx, _argc, _retval); } \
NS_IMETHOD EncodeToStream(nsIOutputStream *stream, const char * charset, bool writeBOM, JS::HandleValue value, JSContext* cx, uint8_t _argc) override { return _to EncodeToStream(stream, charset, writeBOM, value, cx, _argc); } \
NS_IMETHOD Decode(const nsAString & str, JSContext* cx, JS::MutableHandleValue _retval) override { return _to Decode(str, cx, _retval); } \
NS_IMETHOD DecodeFromStream(nsIInputStream *stream, int32_t contentLength, JSContext* cx, JS::MutableHandleValue _retval) override { return _to DecodeFromStream(stream, contentLength, cx, _retval); } \
NS_IMETHOD EncodeFromJSVal(JS::Value *value, JSContext *cx, nsAString & _retval) override { return _to EncodeFromJSVal(value, cx, _retval); } \
NS_IMETHOD DecodeToJSVal(const nsAString & str, JSContext *cx, JS::MutableHandleValue _retval) override { return _to DecodeToJSVal(str, cx, _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_NSIJSON(_to) \
NS_IMETHOD Encode(JS::HandleValue value, JSContext* cx, uint8_t _argc, nsAString & _retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Encode(value, cx, _argc, _retval); } \
NS_IMETHOD EncodeToStream(nsIOutputStream *stream, const char * charset, bool writeBOM, JS::HandleValue value, JSContext* cx, uint8_t _argc) override { return !_to ? NS_ERROR_NULL_POINTER : _to->EncodeToStream(stream, charset, writeBOM, value, cx, _argc); } \
NS_IMETHOD Decode(const nsAString & str, JSContext* cx, JS::MutableHandleValue _retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Decode(str, cx, _retval); } \
NS_IMETHOD DecodeFromStream(nsIInputStream *stream, int32_t contentLength, JSContext* cx, JS::MutableHandleValue _retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->DecodeFromStream(stream, contentLength, cx, _retval); } \
NS_IMETHOD EncodeFromJSVal(JS::Value *value, JSContext *cx, nsAString & _retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->EncodeFromJSVal(value, cx, _retval); } \
NS_IMETHOD DecodeToJSVal(const nsAString & str, JSContext *cx, JS::MutableHandleValue _retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->DecodeToJSVal(str, cx, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsJSON : public nsIJSON
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIJSON
nsJSON();
private:
~nsJSON();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsJSON, nsIJSON)
nsJSON::nsJSON()
{
/* member initializers and constructor code */
}
nsJSON::~nsJSON()
{
/* destructor code */
}
/* [deprecated,implicit_jscontext,optional_argc] AString encode ([optional] in jsval value); */
NS_IMETHODIMP nsJSON::Encode(JS::HandleValue value, JSContext* cx, uint8_t _argc, nsAString & _retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [deprecated,implicit_jscontext,optional_argc] void encodeToStream (in nsIOutputStream stream, in string charset, in boolean writeBOM, [optional] in jsval value); */
NS_IMETHODIMP nsJSON::EncodeToStream(nsIOutputStream *stream, const char * charset, bool writeBOM, JS::HandleValue value, JSContext* cx, uint8_t _argc)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [deprecated,implicit_jscontext] jsval decode (in AString str); */
NS_IMETHODIMP nsJSON::Decode(const nsAString & str, JSContext* cx, JS::MutableHandleValue _retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [implicit_jscontext] jsval decodeFromStream (in nsIInputStream stream, in long contentLength); */
NS_IMETHODIMP nsJSON::DecodeFromStream(nsIInputStream *stream, int32_t contentLength, JSContext* cx, JS::MutableHandleValue _retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] AString encodeFromJSVal (in JSValPtr value, in JSContext cx); */
NS_IMETHODIMP nsJSON::EncodeFromJSVal(JS::Value *value, JSContext *cx, nsAString & _retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] jsval decodeToJSVal (in AString str, in JSContext cx); */
NS_IMETHODIMP nsJSON::DecodeToJSVal(const nsAString & str, JSContext *cx, JS::MutableHandleValue _retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIJSON_h__ */
|