bug 1575328 - Fix usage of nsIDocShellTreeItem in nsDocShell::SetMixedContentChannel. r=kmag

Differential Revision: https://phabricator.services.mozilla.com/D58442

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Tetsuharu OHZEKI 2020-01-07 08:16:26 +00:00
Родитель 6a2ea73827
Коммит 1fb4d249f5
1 изменённых файлов: 1 добавлений и 4 удалений

Просмотреть файл

@ -4983,10 +4983,7 @@ nsDocShell::SetMixedContentChannel(nsIChannel* aMixedContentChannel) {
#ifdef DEBUG
// if the channel is non-null
if (aMixedContentChannel) {
// Get the root docshell.
nsCOMPtr<nsIDocShellTreeItem> root;
GetInProcessSameTypeRootTreeItem(getter_AddRefs(root));
NS_WARNING_ASSERTION(root.get() == static_cast<nsIDocShellTreeItem*>(this),
NS_WARNING_ASSERTION(mBrowsingContext->IsTop(),
"Setting mMixedContentChannel on a docshell that is "
"not the root docshell");
}