mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1183158 - Part 1: Get rid of RegistrationEnumerator; r=baku
This commit is contained in:
parent
4d41f439fc
commit
f47d8fadff
@ -84,52 +84,6 @@ ServiceWorkerManagerService::UnregisterActor(ServiceWorkerManagerParent* aParent
|
|||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
struct MOZ_STACK_CLASS RegistrationData final
|
|
||||||
{
|
|
||||||
RegistrationData(ServiceWorkerRegistrationData& aData,
|
|
||||||
uint64_t aParentID)
|
|
||||||
: mData(aData)
|
|
||||||
, mParentID(aParentID)
|
|
||||||
#ifdef DEBUG
|
|
||||||
, mParentFound(false)
|
|
||||||
#endif
|
|
||||||
{
|
|
||||||
MOZ_COUNT_CTOR(RegistrationData);
|
|
||||||
}
|
|
||||||
|
|
||||||
~RegistrationData()
|
|
||||||
{
|
|
||||||
MOZ_COUNT_DTOR(RegistrationData);
|
|
||||||
}
|
|
||||||
|
|
||||||
const ServiceWorkerRegistrationData& mData;
|
|
||||||
const uint64_t mParentID;
|
|
||||||
#ifdef DEBUG
|
|
||||||
bool mParentFound;
|
|
||||||
#endif
|
|
||||||
};
|
|
||||||
|
|
||||||
PLDHashOperator
|
|
||||||
RegistrationEnumerator(nsPtrHashKey<ServiceWorkerManagerParent>* aKey, void* aPtr)
|
|
||||||
{
|
|
||||||
AssertIsOnBackgroundThread();
|
|
||||||
|
|
||||||
auto* data = static_cast<RegistrationData*>(aPtr);
|
|
||||||
|
|
||||||
ServiceWorkerManagerParent* parent = aKey->GetKey();
|
|
||||||
MOZ_ASSERT(parent);
|
|
||||||
|
|
||||||
if (parent->ID() != data->mParentID) {
|
|
||||||
unused << parent->SendNotifyRegister(data->mData);
|
|
||||||
#ifdef DEBUG
|
|
||||||
} else {
|
|
||||||
data->mParentFound = true;
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
return PL_DHASH_NEXT;
|
|
||||||
}
|
|
||||||
|
|
||||||
struct MOZ_STACK_CLASS SoftUpdateData final
|
struct MOZ_STACK_CLASS SoftUpdateData final
|
||||||
{
|
{
|
||||||
SoftUpdateData(const OriginAttributes& aOriginAttributes,
|
SoftUpdateData(const OriginAttributes& aOriginAttributes,
|
||||||
@ -323,11 +277,22 @@ ServiceWorkerManagerService::PropagateRegistration(
|
|||||||
{
|
{
|
||||||
AssertIsOnBackgroundThread();
|
AssertIsOnBackgroundThread();
|
||||||
|
|
||||||
RegistrationData data(aData, aParentID);
|
DebugOnly<bool> parentFound = false;
|
||||||
mAgents.EnumerateEntries(RegistrationEnumerator, &data);
|
for (auto iter = mAgents.Iter(); !iter.Done(); iter.Next()) {
|
||||||
|
ServiceWorkerManagerParent* parent = iter.Get()->GetKey();
|
||||||
|
MOZ_ASSERT(parent);
|
||||||
|
|
||||||
|
if (parent->ID() != aParentID) {
|
||||||
|
unused << parent->SendNotifyRegister(aData);
|
||||||
|
#ifdef DEBUG
|
||||||
|
} else {
|
||||||
|
parentFound = true;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
MOZ_ASSERT(data.mParentFound);
|
MOZ_ASSERT(parentFound);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user