summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMoonchild <mcwerewolf@gmail.com>2018-06-19 11:47:16 +0200
committerGitHub <noreply@github.com>2018-06-19 11:47:16 +0200
commit2546ae588f7131bf2879af4ed6094a96025f1a27 (patch)
tree821d83d5ddfe2e0b2363c04eaa067d0a70c35613
parentca40a511981fdddc1e4765dbb2fb083966d5197d (diff)
parentb054fd689e603ad9d94e3e012cfc3a20fa90b994 (diff)
downloadUXP-2546ae588f7131bf2879af4ed6094a96025f1a27.tar
UXP-2546ae588f7131bf2879af4ed6094a96025f1a27.tar.gz
UXP-2546ae588f7131bf2879af4ed6094a96025f1a27.tar.lz
UXP-2546ae588f7131bf2879af4ed6094a96025f1a27.tar.xz
UXP-2546ae588f7131bf2879af4ed6094a96025f1a27.zip
Merge pull request #520 from janekptacijarabaci/pm_permissions_clean-up_name-functions_1
[PALEMOON] Remove named function syntax in aboutPermissions.js
-rw-r--r--application/palemoon/components/permissions/aboutPermissions.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/application/palemoon/components/permissions/aboutPermissions.js b/application/palemoon/components/permissions/aboutPermissions.js
index 88066cc6e..3e40260d1 100644
--- a/application/palemoon/components/permissions/aboutPermissions.js
+++ b/application/palemoon/components/permissions/aboutPermissions.js
@@ -77,7 +77,7 @@ Site.prototype = {
* @param aCallback
* A callback function that takes a favicon image URL as a parameter.
*/
- getFavicon: function Site_getFavicon(aCallback) {
+ getFavicon: function(aCallback) {
function invokeCallback(aFaviconURI) {
try {
// Use getFaviconLinkForIcon to get image data from the database instead
@@ -102,7 +102,7 @@ Site.prototype = {
* @param aCallback
* A function that takes the visit count (a number) as a parameter.
*/
- getVisitCount: function Site_getVisitCount(aCallback) {
+ getVisitCount: function(aCallback) {
// XXX This won't be a very reliable system, as it will count both http: and https: visits
// Unfortunately, I don't think that there is a much better way to do it right now.
let rev_host = this.principal.URI.host.split("").reverse().join("") + ".";
@@ -136,7 +136,7 @@ Site.prototype = {
*
* @return A boolean indicating whether or not a permission is set.
*/
- getPermission: function Site_getPermission(aType, aResultObj) {
+ getPermission: function(aType, aResultObj) {
// Password saving isn't a nsIPermissionManager permission type, so handle
// it seperately.
if (aType == "password") {
@@ -174,7 +174,7 @@ Site.prototype = {
* The permission value to set for the permission type. This should
* be one of the constants defined in nsIPermissionManager.
*/
- setPermission: function Site_setPermission(aType, aPerm) {
+ setPermission: function(aType, aPerm) {
// Password saving isn't a nsIPermissionManager permission type, so handle
// it seperately.
if (aType == "password") {
@@ -198,7 +198,7 @@ Site.prototype = {
* The permission type string stored in permission manager.
* e.g. "cookie", "geo", "indexedDB", "popup", "image"
*/
- clearPermission: function Site_clearPermission(aType) {
+ clearPermission: function(aType) {
Services.perms.removeFromPrincipal(this.principal, aType);
},
@@ -264,7 +264,7 @@ Site.prototype = {
/**
* Removes a set of specific cookies from the browser.
*/
- clearCookies: function Site_clearCookies() {
+ clearCookies: function() {
this.cookies.forEach(function(aCookie) {
Services.cookies.remove(aCookie.host, aCookie.name, aCookie.path, false,
aCookie.originAttributes);
@@ -274,7 +274,7 @@ Site.prototype = {
/**
* Removes all data from the browser corresponding to the site.
*/
- forgetSite: function Site_forgetSite() {
+ forgetSite: function() {
// XXX This removes data for an entire domain, rather than just
// an origin. This may produce confusing results, as data will
// be cleared for the http:// as well as the https:// domain
@@ -1321,7 +1321,7 @@ var AboutPermissions = {
}
// See toolkit/forgetaboutsite/ForgetAboutSite.jsm
-String.prototype.hasRootDomain = function hasRootDomain(aDomain) {
+String.prototype.hasRootDomain = function(aDomain) {
let index = this.indexOf(aDomain);
if (index == -1) {
return false;