From ad18d877ddd2a44d98fa12ccd3dbbcf4d0ac4299 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- toolkit/components/reflect/reflect.cpp | 77 ++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 toolkit/components/reflect/reflect.cpp (limited to 'toolkit/components/reflect/reflect.cpp') diff --git a/toolkit/components/reflect/reflect.cpp b/toolkit/components/reflect/reflect.cpp new file mode 100644 index 0000000000..cd46baf7cb --- /dev/null +++ b/toolkit/components/reflect/reflect.cpp @@ -0,0 +1,77 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2; -*- */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "reflect.h" +#include "jsapi.h" +#include "mozilla/ModuleUtils.h" +#include "nsMemory.h" +#include "nsString.h" +#include "nsNativeCharsetUtils.h" +#include "xpc_make_class.h" + +#define JSREFLECT_CONTRACTID \ + "@mozilla.org/jsreflect;1" + +#define JSREFLECT_CID \ +{ 0x1a817186, 0x357a, 0x47cd, { 0x8a, 0xea, 0x28, 0x50, 0xd6, 0x0e, 0x95, 0x9e } } + +namespace mozilla { +namespace reflect { + +NS_GENERIC_FACTORY_CONSTRUCTOR(Module) + +NS_IMPL_ISUPPORTS(Module, nsIXPCScriptable) + +Module::Module() +{ +} + +Module::~Module() +{ +} + +#define XPC_MAP_CLASSNAME Module +#define XPC_MAP_QUOTED_CLASSNAME "Module" +#define XPC_MAP_WANT_CALL +#define XPC_MAP_FLAGS nsIXPCScriptable::WANT_CALL +#include "xpc_map_end.h" + +NS_IMETHODIMP +Module::Call(nsIXPConnectWrappedNative* wrapper, + JSContext* cx, + JSObject* obj, + const JS::CallArgs& args, + bool* _retval) +{ + JS::Rooted global(cx, JS::CurrentGlobalOrNull(cx)); + if (!global) + return NS_ERROR_NOT_AVAILABLE; + + *_retval = JS_InitReflectParse(cx, global); + return NS_OK; +} + +} // namespace reflect +} // namespace mozilla + +NS_DEFINE_NAMED_CID(JSREFLECT_CID); + +static const mozilla::Module::CIDEntry kReflectCIDs[] = { + { &kJSREFLECT_CID, false, nullptr, mozilla::reflect::ModuleConstructor }, + { nullptr } +}; + +static const mozilla::Module::ContractIDEntry kReflectContracts[] = { + { JSREFLECT_CONTRACTID, &kJSREFLECT_CID }, + { nullptr } +}; + +static const mozilla::Module kReflectModule = { + mozilla::Module::kVersion, + kReflectCIDs, + kReflectContracts +}; + +NSMODULE_DEFN(jsreflect) = &kReflectModule; -- cgit v1.2.3