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
|
|
|
|
2019-09-06 05:01:44 +03:00
|
|
|
#include "mozilla/dom/WorkletPrincipals.h"
|
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
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2018-11-01 02:03:39 +03:00
|
|
|
PaintWorkletGlobalScope::PaintWorkletGlobalScope(PaintWorkletImpl* aImpl)
|
2020-02-06 16:50:11 +03:00
|
|
|
: WorkletGlobalScope(aImpl->GetAgentClusterId(),
|
|
|
|
aImpl->IsSharedMemoryAllowed()),
|
|
|
|
mImpl(aImpl) {}
|
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
|
|
|
|
|
|
|
// 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
|
|
|
|
2019-09-06 05:01:44 +03:00
|
|
|
JS::AutoHoldPrincipals principals(aCx, new WorkletPrincipals(mImpl));
|
2018-06-26 00:20:54 +03:00
|
|
|
return PaintWorkletGlobalScope_Binding::Wrap(
|
2019-09-06 05:01:44 +03:00
|
|
|
aCx, this, this, options, principals.get(), true, aReflector);
|
2016-12-17 00:21:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void PaintWorkletGlobalScope::RegisterPaint(const nsAString& aType,
|
|
|
|
VoidFunction& aProcessorCtor) {
|
|
|
|
// Nothing to do here, yet.
|
|
|
|
}
|
|
|
|
|
2018-11-01 02:03:39 +03:00
|
|
|
WorkletImpl* PaintWorkletGlobalScope::Impl() const { return mImpl; }
|
|
|
|
|
2016-12-17 00:21:51 +03:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|