mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 814102: Make the 'this' object used when compartment sharing a FakeBackstagePass. r=mrbkap
This commit is contained in:
parent
e5a7452bf5
commit
7ba6475e09
@ -72,6 +72,22 @@ using namespace mozilla;
|
||||
using namespace mozilla::scache;
|
||||
using namespace xpc;
|
||||
|
||||
// This JSClass exists to trick silly code that expects toString()ing the
|
||||
// global in a component scope to return something with "BackstagePass" in it
|
||||
// to continue working.
|
||||
static JSClass kFakeBackstagePassJSClass =
|
||||
{
|
||||
"FakeBackstagePass",
|
||||
0,
|
||||
JS_PropertyStub,
|
||||
JS_PropertyStub,
|
||||
JS_PropertyStub,
|
||||
JS_StrictPropertyStub,
|
||||
JS_EnumerateStub,
|
||||
JS_ResolveStub,
|
||||
JS_ConvertStub
|
||||
};
|
||||
|
||||
static const char kJSRuntimeServiceContractID[] = "@mozilla.org/js/xpc/RuntimeService;1";
|
||||
static const char kXPConnectServiceContractID[] = "@mozilla.org/js/xpc/XPConnect;1";
|
||||
static const char kObserverServiceContractID[] = "@mozilla.org/observer-service;1";
|
||||
@ -717,7 +733,8 @@ mozJSComponentLoader::PrepareObjectForLocation(JSCLContextHelper& aCx,
|
||||
if (aReuseLoaderGlobal) {
|
||||
// If we're reusing the loader global, we don't actually use the
|
||||
// global, but rather we use a different object as the 'this' object.
|
||||
JSObject* newObj = JS_NewObject(aCx, nullptr, nullptr, nullptr);
|
||||
JSObject* newObj = JS_NewObject(aCx, &kFakeBackstagePassJSClass,
|
||||
nullptr, nullptr);
|
||||
NS_ENSURE_TRUE(newObj, nullptr);
|
||||
|
||||
obj = newObj;
|
||||
|
Loading…
Reference in New Issue
Block a user