summaryrefslogtreecommitdiffstats
path: root/application/basilisk/components/sessionstore/PrivacyLevel.jsm
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2018-02-02 05:06:10 -0500
committerMatt A. Tobin <email@mattatobin.com>2018-02-02 05:06:10 -0500
commit6d614170cbfa958564eb5f824234ad5a9e484344 (patch)
tree3e1eb384382f30987cb2e64bd654afa8b74fd06b /application/basilisk/components/sessionstore/PrivacyLevel.jsm
parent2a6b605d64b19411a300efdbbd7f78c349f90206 (diff)
downloadUXP-6d614170cbfa958564eb5f824234ad5a9e484344.tar
UXP-6d614170cbfa958564eb5f824234ad5a9e484344.tar.gz
UXP-6d614170cbfa958564eb5f824234ad5a9e484344.tar.lz
UXP-6d614170cbfa958564eb5f824234ad5a9e484344.tar.xz
UXP-6d614170cbfa958564eb5f824234ad5a9e484344.zip
Revert "Add Basilisk"
This reverts commit e72ef92b5bdc43cd2584198e2e54e951b70299e8.
Diffstat (limited to 'application/basilisk/components/sessionstore/PrivacyLevel.jsm')
-rw-r--r--application/basilisk/components/sessionstore/PrivacyLevel.jsm64
1 files changed, 0 insertions, 64 deletions
diff --git a/application/basilisk/components/sessionstore/PrivacyLevel.jsm b/application/basilisk/components/sessionstore/PrivacyLevel.jsm
deleted file mode 100644
index 135f1f959..000000000
--- a/application/basilisk/components/sessionstore/PrivacyLevel.jsm
+++ /dev/null
@@ -1,64 +0,0 @@
-/* This Source Code Form is subject to the terms of the Mozilla Public
-* License, v. 2.0. If a copy of the MPL was not distributed with this file,
-* You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-"use strict";
-
-this.EXPORTED_SYMBOLS = ["PrivacyLevel"];
-
-const Cu = Components.utils;
-
-Cu.import("resource://gre/modules/Services.jsm");
-
-const PREF = "browser.sessionstore.privacy_level";
-
-// The following constants represent the different possible privacy levels that
-// can be set by the user and that we need to consider when collecting text
-// data, and cookies.
-//
-// Collect data from all sites (http and https).
-const PRIVACY_NONE = 0;
-// Collect data from unencrypted sites (http), only.
-const PRIVACY_ENCRYPTED = 1;
-// Collect no data.
-const PRIVACY_FULL = 2;
-
-/**
- * The external API as exposed by this module.
- */
-var PrivacyLevel = Object.freeze({
- /**
- * Returns whether the current privacy level allows saving data for the given
- * |url|.
- *
- * @param url The URL we want to save data for.
- * @return bool
- */
- check: function (url) {
- return PrivacyLevel.canSave({ isHttps: url.startsWith("https:") });
- },
-
- /**
- * Checks whether we're allowed to save data for a specific site.
- *
- * @param {isHttps: boolean}
- * An object that must have one property: 'isHttps'.
- * 'isHttps' tells whether the site us secure communication (HTTPS).
- * @return {bool} Whether we can save data for the specified site.
- */
- canSave: function ({isHttps}) {
- let level = Services.prefs.getIntPref(PREF);
-
- // Never save any data when full privacy is requested.
- if (level == PRIVACY_FULL) {
- return false;
- }
-
- // Don't save data for encrypted sites when requested.
- if (isHttps && level == PRIVACY_ENCRYPTED) {
- return false;
- }
-
- return true;
- }
-});