Skip to content

Commit

Permalink
Revert "Bug 1306708 - Fix rebasing bustage on a CLOSED TREE"
Browse files Browse the repository at this point in the history
This reverts commit cfc7bb2.
  • Loading branch information
bill-mccloskey committed Oct 4, 2016
1 parent cfc7bb2 commit 8d00ec1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ipc/glue/MessageChannel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,8 @@ MessageChannel::Send(Message* aMsg)
}

MOZ_RELEASE_ASSERT(!aMsg->is_sync());
MOZ_RELEASE_ASSERT(aMsg->nested_level() != IPC::Message::NESTED_INSIDE_SYNC);
// We never send an async high priority message.
MOZ_RELEASE_ASSERT(aMsg->priority() != IPC::Message::PRIORITY_HIGH);

CxxStackFrame frame(*this, OUT_MESSAGE, aMsg);

Expand Down

0 comments on commit 8d00ec1

Please sign in to comment.