Bug 1640773 - Remove unnecessary nsIFrameLoaderOwner QI from nsSessionStore.js. r=frg

This commit is contained in:
Ian Neal 2020-05-26 01:30:14 +01:00
Родитель ec3a11f3e7
Коммит 57ab5f2d0f
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -2738,7 +2738,7 @@ SessionStoreService.prototype = {
if (tabData.storage) {
for (let origin of Object.getOwnPropertyNames(tabData.storage)) {
try {
let {frameLoader} = browser.QueryInterface(Ci.nsIFrameLoaderOwner);
let {frameLoader} = browser;
if (frameLoader.tabParent) {
let attrs = browser.contentPrincipal.originAttributes;
let dataPrincipal = Services.scriptSecurityManager.createCodebasePrincipalFromOrigin(origin);