Bug 1569428 - Port Bug 1554947 "Update nsIWebBrowserPersist to use referrerInfo class instead of referrer and referrer policy" to SeaMonkey. r=frg

This commit is contained in:
Bill Gianopoulos 2019-07-18 06:48:15 -04:00
Родитель 198f9b1446
Коммит 83c53edc42
1 изменённых файлов: 4 добавлений и 2 удалений

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

@ -172,9 +172,11 @@ nsMacShellService::SetDesktopBackground(Element* aElement,
loadContext = do_QueryInterface(docShell);
}
nsCOMPtr<nsIReferrerInfo> referrerInfo = new mozilla::dom::ReferrerInfo();
referrerInfo->InitWithNode(aElement);
return wbp->SaveURI(imageURI, aElement->NodePrincipal(), 0,
docURI, aElement->OwnerDoc()->GetReferrerPolicy(),
nullptr, nullptr,
referrerInfo, nullptr, nullptr,
mBackgroundFile, loadContext);
}