blob: f86ec11a9cbb1b9a364dddd23d0ceb975c355707 (
plain)
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
|
/* -*- 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 "WorkletPrincipals.h"
#include "mozilla/dom/WorkletImpl.h"
#include "nsJSPrincipals.h"
namespace mozilla {
namespace dom {
WorkletPrincipals::WorkletPrincipals(WorkletImpl* aWorkletImpl)
: JSPrincipals(), mWorkletImpl(aWorkletImpl) {
setDebugToken(kJSPrincipalsDebugToken);
}
WorkletPrincipals::~WorkletPrincipals() = default;
bool WorkletPrincipals::write(JSContext* aCx,
JSStructuredCloneWriter* aWriter) {
// This is a serialization of the NullPrincipal corresponding to the worklet
// environment settings object for the WorkletGlobalScope.
// https://drafts.css-houdini.org/worklets/#set-up-a-worklet-environment-settings-object
return nsJSPrincipals::WritePrincipalInfo(aWriter,
mWorkletImpl->PrincipalInfo());
}
bool WorkletPrincipals::isSystemOrAddonPrincipal() {
// Per Bug 1578623 rev a83797ed249c - Worklets are always NullPrincipal
return false;
}
void WorkletPrincipals::Destroy(JSPrincipals* aPrincipals) {
delete static_cast<WorkletPrincipals*>(aPrincipals);
}
} // namespace dom
} // namespace mozilla
|