2016-12-17 00:21:51 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* 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 "PaintWorkletGlobalScope.h"
|
2018-11-01 02:03:39 +03:00
|
|
|
|
2016-12-17 00:21:51 +03:00
|
|
|
#include "mozilla/dom/PaintWorkletGlobalScopeBinding.h"
|
2016-12-17 09:19:50 +03:00
|
|
|
#include "mozilla/dom/FunctionBinding.h"
|
2018-11-01 02:03:39 +03:00
|
|
|
#include "PaintWorkletImpl.h"
|
2016-12-17 00:21:51 +03:00
|
|
|
|
2022-03-16 02:16:14 +03:00
|
|
|
namespace mozilla::dom {
|
2016-12-17 00:21:51 +03:00
|
|
|
|
2018-11-01 02:03:39 +03:00
|
|
|
PaintWorkletGlobalScope::PaintWorkletGlobalScope(PaintWorkletImpl* aImpl)
|
2022-03-16 02:16:14 +03:00
|
|
|
: WorkletGlobalScope(aImpl) {}
|
|
|
|
|
|
|
|
PaintWorkletImpl* PaintWorkletGlobalScope::Impl() const {
|
|
|
|
return static_cast<PaintWorkletImpl*>(mImpl.get());
|
|
|
|
}
|
2016-12-17 00:21:51 +03:00
|
|
|
|
|
|
|
bool PaintWorkletGlobalScope::WrapGlobalObject(
|
|
|
|
JSContext* aCx, JS::MutableHandle<JSObject*> aReflector) {
|
2018-05-17 11:59:45 +03:00
|
|
|
JS::RealmOptions options;
|
2020-04-17 11:21:02 +03:00
|
|
|
|
2023-06-07 13:52:30 +03:00
|
|
|
options.creationOptions().setForceUTC(
|
|
|
|
ShouldResistFingerprinting(RFPTarget::JSDateTimeUTC));
|
|
|
|
options.creationOptions().setAlwaysUseFdlibm(
|
|
|
|
ShouldResistFingerprinting(RFPTarget::JSMathFdlibm));
|
2022-11-29 16:34:13 +03:00
|
|
|
|
2020-04-17 11:21:02 +03:00
|
|
|
// The SharedArrayBuffer global constructor property should not be present in
|
|
|
|
// a fresh global object when shared memory objects aren't allowed (because
|
|
|
|
// COOP/COEP support isn't enabled, or because COOP/COEP don't act to isolate
|
2020-05-01 14:36:08 +03:00
|
|
|
// this worker to a separate process).
|
2020-04-17 11:21:02 +03:00
|
|
|
options.creationOptions().setDefineSharedArrayBufferConstructor(
|
2020-05-01 14:36:08 +03:00
|
|
|
IsSharedMemoryAllowed());
|
2020-04-17 11:21:02 +03:00
|
|
|
|
2018-06-26 00:20:54 +03:00
|
|
|
return PaintWorkletGlobalScope_Binding::Wrap(
|
2022-12-13 01:08:36 +03:00
|
|
|
aCx, this, this, options, nsJSPrincipals::get(mImpl->Principal()), true,
|
|
|
|
aReflector);
|
2016-12-17 00:21:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void PaintWorkletGlobalScope::RegisterPaint(const nsAString& aType,
|
|
|
|
VoidFunction& aProcessorCtor) {
|
|
|
|
// Nothing to do here, yet.
|
|
|
|
}
|
|
|
|
|
2022-03-16 02:16:14 +03:00
|
|
|
} // namespace mozilla::dom
|