diff options
author | Moonchild <mcwerewolf@gmail.com> | 2018-04-27 13:03:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-27 13:03:12 +0200 |
commit | c82c6d960a7f19d6595171f9705c43514f20c1ec (patch) | |
tree | a6b92a1da483b654e3ac498fe1197dcad9c65866 /application/palemoon/base/content/browser-plugins.js | |
parent | 8acbae697958b7abfbb9ea5806646ebb2cea5f87 (diff) | |
parent | e66060388f0f8402bed402cb28edbe43fcc31ad5 (diff) | |
download | UXP-c82c6d960a7f19d6595171f9705c43514f20c1ec.tar UXP-c82c6d960a7f19d6595171f9705c43514f20c1ec.tar.gz UXP-c82c6d960a7f19d6595171f9705c43514f20c1ec.tar.lz UXP-c82c6d960a7f19d6595171f9705c43514f20c1ec.tar.xz UXP-c82c6d960a7f19d6595171f9705c43514f20c1ec.zip |
Merge pull request #273 from janekptacijarabaci/pm_permissions_1
[PALEMOON] [frontend vs backend] Fix "Permissions Manager" and permissions
Diffstat (limited to 'application/palemoon/base/content/browser-plugins.js')
-rw-r--r-- | application/palemoon/base/content/browser-plugins.js | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/application/palemoon/base/content/browser-plugins.js b/application/palemoon/base/content/browser-plugins.js index 769ac6d8a..838268203 100644 --- a/application/palemoon/base/content/browser-plugins.js +++ b/application/palemoon/base/content/browser-plugins.js @@ -470,28 +470,12 @@ var gPluginHandler = { } }, - // Match the behaviour of nsPermissionManager - _getHostFromPrincipal: function PH_getHostFromPrincipal(principal) { - if (!principal.URI || principal.URI.schemeIs("moz-nullprincipal")) { - return "(null)"; - } - - try { - if (principal.URI.host) - return principal.URI.host; - } catch (e) {} - - return principal.origin; - }, - _makeCenterActions: function PH_makeCenterActions(notification) { let contentWindow = notification.browser.contentWindow; let cwu = contentWindow.QueryInterface(Ci.nsIInterfaceRequestor) .getInterface(Ci.nsIDOMWindowUtils); let principal = contentWindow.document.nodePrincipal; - // This matches the behavior of nsPermssionManager, used for display purposes only - let principalHost = this._getHostFromPrincipal(principal); let centerActions = []; let pluginsFound = new Set(); @@ -517,11 +501,11 @@ var gPluginHandler = { let permissionObj = Services.perms. getPermissionObject(principal, pluginInfo.permissionString, false); if (permissionObj) { - pluginInfo.pluginPermissionHost = permissionObj.host; + pluginInfo.pluginPermissionPrePath = permissionObj.principal.originNoSuffix; pluginInfo.pluginPermissionType = permissionObj.expireType; } else { - pluginInfo.pluginPermissionHost = principalHost; + pluginInfo.pluginPermissionPrePath = principal.originNoSuffix; pluginInfo.pluginPermissionType = undefined; } |