Skip to content

Commit 11b8b5a

Browse files
committed
Backed out 7 changesets (bug 1661364, bug 1660342) for making bug 1551615 perma fail CLOSED TREE
Backed out changeset a56449ddacc9 (bug 1661364) Backed out changeset fc185ddca53b (bug 1661364) Backed out changeset 99234e013005 (bug 1661364) Backed out changeset eac6bfc4a98d (bug 1661364) Backed out changeset 9cb0e2dc8d8a (bug 1661364) Backed out changeset 37b78e402c23 (bug 1661364) Backed out changeset ae991d4209a7 (bug 1660342)
1 parent 86ef6ee commit 11b8b5a

File tree

5 files changed

+167
-208
lines changed

5 files changed

+167
-208
lines changed

docshell/base/BrowsingContextGroup.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ void BrowsingContextGroup::EnsureHostProcess(ContentParent* aProcess) {
9494

9595
void BrowsingContextGroup::RemoveHostProcess(ContentParent* aProcess) {
9696
MOZ_DIAGNOSTIC_ASSERT(aProcess);
97-
MOZ_DIAGNOSTIC_ASSERT(aProcess->GetRemoteType() != PREALLOC_REMOTE_TYPE);
9897
auto entry = mHosts.Lookup(aProcess->GetRemoteType());
9998
if (entry && entry.Data() == aProcess) {
10099
entry.Remove();
@@ -119,7 +118,6 @@ static void CollectContextInitializers(
119118
void BrowsingContextGroup::Subscribe(ContentParent* aProcess) {
120119
MOZ_ASSERT(!mDestroyed);
121120
MOZ_DIAGNOSTIC_ASSERT(aProcess && !aProcess->IsLaunching());
122-
MOZ_DIAGNOSTIC_ASSERT(aProcess->GetRemoteType() != PREALLOC_REMOTE_TYPE);
123121

124122
// Check if we're already subscribed to this process.
125123
if (!mSubscribers.EnsureInserted(aProcess)) {
@@ -166,7 +164,6 @@ void BrowsingContextGroup::Subscribe(ContentParent* aProcess) {
166164

167165
void BrowsingContextGroup::Unsubscribe(ContentParent* aProcess) {
168166
MOZ_DIAGNOSTIC_ASSERT(aProcess);
169-
MOZ_DIAGNOSTIC_ASSERT(aProcess->GetRemoteType() != PREALLOC_REMOTE_TYPE);
170167
mSubscribers.RemoveEntry(aProcess);
171168
aProcess->RemoveBrowsingContextGroup(this);
172169

0 commit comments

Comments
 (0)