gecko-dev/dom/cache/CacheWorkerRef.h
Andrea Marchesini 46c41f3318 Bug 1559919 - Finish the WorkerHolder cleanup - part 10 - CacheWorkerHolder ported to WorkerRef, r=asuth
Differential Revision: https://phabricator.services.mozilla.com/D35229

--HG--
rename : dom/cache/CacheWorkerHolder.cpp => dom/cache/CacheWorkerRef.cpp
rename : dom/cache/CacheWorkerHolder.h => dom/cache/CacheWorkerRef.h
extra : moz-landing-system : lando
2019-07-12 11:17:59 +00:00

65 lines
1.5 KiB
C++

/* -*- 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/. */
#ifndef mozilla_dom_cache_CacheWorkerRef_h
#define mozilla_dom_cache_CacheWorkerRef_h
#include "nsISupportsImpl.h"
#include "nsTArray.h"
namespace mozilla {
namespace dom {
class IPCWorkerRef;
class StrongWorkerRef;
class WorkerPrivate;
namespace cache {
class ActorChild;
class CacheWorkerRef final {
public:
enum Behavior {
eStrongWorkerRef,
eIPCWorkerRef,
};
static already_AddRefed<CacheWorkerRef> Create(WorkerPrivate* aWorkerPrivate,
Behavior aBehavior);
static already_AddRefed<CacheWorkerRef> PreferBehavior(
CacheWorkerRef* aCurrentRef, Behavior aBehavior);
void AddActor(ActorChild* aActor);
void RemoveActor(ActorChild* aActor);
bool Notified() const;
private:
explicit CacheWorkerRef(Behavior aBehavior);
~CacheWorkerRef();
void Notify();
nsTArray<ActorChild*> mActorList;
Behavior mBehavior;
bool mNotified;
RefPtr<StrongWorkerRef> mStrongWorkerRef;
RefPtr<IPCWorkerRef> mIPCWorkerRef;
public:
NS_INLINE_DECL_REFCOUNTING(mozilla::dom::cache::CacheWorkerRef)
};
} // namespace cache
} // namespace dom
} // namespace mozilla
#endif // mozilla_dom_cache_CacheWorkerRef_h