Bug 1526591 - Remove devtools.inspector.shapesHighlighter.enabled pref. r=rcaliman
[gecko.git] / dom / worklet / WorkletPrincipal.cpp
blob88aacae002770dd1f9e47e231f94dab0c1e952cf
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #include "WorkletPrincipal.h"
8 #include "jsapi.h"
9 #include "mozilla/Assertions.h"
11 namespace mozilla {
12 namespace dom {
13 namespace WorkletPrincipal {
15 struct WorkletPrincipal final : public JSPrincipals {
16 bool write(JSContext* aCx, JSStructuredCloneWriter* aWriter) override {
17 MOZ_CRASH("WorkletPrincipal::write not implemented");
18 return false;
22 JSPrincipals* GetWorkletPrincipal() {
23 static WorkletPrincipal sPrincipal;
26 * To make sure the the principals refcount is initialized to one, atomically
27 * increment it on every pass though this function. If we discover this wasn't
28 * the first time, decrement it again. This avoids the need for
29 * synchronization.
31 int32_t prevRefcount = sPrincipal.refcount++;
32 if (prevRefcount > 0) {
33 --sPrincipal.refcount;
34 } else {
35 #ifdef DEBUG
36 sPrincipal.debugToken = kJSPrincipalsDebugToken;
37 #endif
40 return &sPrincipal;
43 } // namespace WorkletPrincipal
44 } // namespace dom
45 } // namespace mozilla