Bug 1826136 [wpt PR 39338] - Update wpt metadata, a=testonly
[gecko.git] / dom / cache / CacheWorkerRef.h
blob1e4177205790cfedc3afbad5a3bcec9e9d159263
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_cache_CacheWorkerRef_h
8 #define mozilla_dom_cache_CacheWorkerRef_h
10 #include "mozilla/dom/SafeRefPtr.h"
11 #include "nsISupportsImpl.h"
12 #include "nsTArray.h"
14 namespace mozilla::dom {
16 class IPCWorkerRef;
17 class StrongWorkerRef;
18 class WorkerPrivate;
20 namespace cache {
22 class ActorChild;
24 class CacheWorkerRef final : public SafeRefCounted<CacheWorkerRef> {
25 public:
26 enum Behavior {
27 eStrongWorkerRef,
28 eIPCWorkerRef,
31 static SafeRefPtr<CacheWorkerRef> Create(WorkerPrivate* aWorkerPrivate,
32 Behavior aBehavior);
34 static SafeRefPtr<CacheWorkerRef> PreferBehavior(
35 SafeRefPtr<CacheWorkerRef> aCurrentRef, Behavior aBehavior);
37 void AddActor(ActorChild& aActor);
38 void RemoveActor(ActorChild& aActor);
40 bool Notified() const;
42 private:
43 struct ConstructorGuard {};
45 void Notify();
47 nsTArray<NotNull<ActorChild*>> mActorList;
49 Behavior mBehavior;
50 bool mNotified;
52 RefPtr<StrongWorkerRef> mStrongWorkerRef;
53 RefPtr<IPCWorkerRef> mIPCWorkerRef;
55 public:
56 CacheWorkerRef(Behavior aBehavior, ConstructorGuard);
58 ~CacheWorkerRef();
60 NS_DECL_OWNINGTHREAD
61 MOZ_DECLARE_REFCOUNTED_TYPENAME(mozilla::dom::cache::CacheWorkerRef)
64 } // namespace cache
65 } // namespace mozilla::dom
67 #endif // mozilla_dom_cache_CacheWorkerRef_h