1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- 'use strict';
- module.metadata = {
- "stability": "stable"
- };
- const { setMode, getMode, on: onStateChange, isPermanentPrivateBrowsing } = require('./private-browsing/utils');
- const { isWindowPrivate } = require('./window/utils');
- const { emit, on, once, off } = require('./event/core');
- const { when: unload } = require('./system/unload');
- const { deprecateUsage, deprecateFunction, deprecateEvent } = require('./util/deprecate');
- const { getOwnerWindow } = require('./private-browsing/window/utils');
- onStateChange('start', function onStart() {
- emit(exports, 'start');
- });
- onStateChange('stop', function onStop() {
- emit(exports, 'stop');
- });
- Object.defineProperty(exports, "isActive", {
- get: deprecateFunction(getMode, 'require("private-browsing").isActive is deprecated.')
- });
- exports.activate = function activate() setMode(true);
- exports.deactivate = function deactivate() setMode(false);
- exports.on = deprecateEvents(on.bind(null, exports));
- exports.once = deprecateEvents(once.bind(null, exports));
- exports.removeListener = deprecateEvents(function removeListener(type, listener) {
-
-
-
- off(exports, type, listener);
- });
- exports.isPrivate = function(thing) {
-
-
- if (!!thing) {
-
-
- if (isWindowPrivate(thing)) {
- return true;
- }
-
-
- if (thing.tab) {
- let tabWindow = getOwnerWindow(thing.tab);
- if (tabWindow) {
- let isThingPrivate = isWindowPrivate(tabWindow);
- if (isThingPrivate)
- return isThingPrivate;
- }
- }
-
- let window = getOwnerWindow(thing);
- if (window)
- return isWindowPrivate(window);
- }
-
- if (isPermanentPrivateBrowsing())
- return true;
-
-
-
- return getMode();
- };
- function deprecateEvents(func) deprecateEvent(
- func,
- 'The require("sdk/private-browsing") module\'s "start" and "stop" events ' +
- 'are deprecated.',
- ['start', 'stop']
- );
- // Make sure listeners are cleaned up.
- unload(function() off(exports));
|