Bug 1842773 - Part 18: Update TypedArray length, byteLength, and byteOffset accesses...
[gecko.git] / dom / serviceworkers / ServiceWorkerChild.h
blob2352c1d0a50e54b9850ddffb04eeefdb2b483f90
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 #ifndef mozilla_dom_serviceworkerchild_h__
8 #define mozilla_dom_serviceworkerchild_h__
10 #include "mozilla/dom/PServiceWorkerChild.h"
11 #include "mozilla/dom/WorkerRef.h"
13 namespace mozilla::dom {
15 class IPCWorkerRef;
16 class ServiceWorker;
18 class ServiceWorkerChild final : public PServiceWorkerChild {
19 RefPtr<IPCWorkerRef> mIPCWorkerRef;
20 ServiceWorker* mOwner;
21 bool mTeardownStarted;
23 ServiceWorkerChild();
25 ~ServiceWorkerChild() = default;
27 // PServiceWorkerChild
28 void ActorDestroy(ActorDestroyReason aReason) override;
30 public:
31 NS_INLINE_DECL_REFCOUNTING(ServiceWorkerChild, override);
33 static RefPtr<ServiceWorkerChild> Create();
35 void SetOwner(ServiceWorker* aOwner);
37 void RevokeOwner(ServiceWorker* aOwner);
39 void MaybeStartTeardown();
42 } // namespace mozilla::dom
44 #endif // mozilla_dom_serviceworkerchild_h__