Bug 769467 - Add a PrivateBrowsingUtils module. r=gavin

Add a PrivateBrowsingUtils module that contains a function to find out if an
arbitrary window is a descendant of a private docshell or not.
This commit is contained in:
Chris Lord 2012-07-03 15:35:03 +01:00
Родитель 473c7d68a2
Коммит 92199ce95d
2 изменённых файлов: 17 добавлений и 0 удалений

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

@ -62,6 +62,7 @@ EXTRA_JS_MODULES = \
PopupNotifications.jsm \
Dict.jsm \
PropertyListUtils.jsm \
PrivateBrowsingUtils.jsm \
$(NULL)
EXTRA_PP_JS_MODULES = \

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

@ -0,0 +1,16 @@
/* 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/. */
var EXPORTED_SYMBOLS = ["PrivateBrowsingUtils"];
const Ci = Components.interfaces;
var PrivateBrowsingUtils = {
isWindowPrivate: function pbu_isWindowPrivate(aWindow) {
return aWindow.QueryInterface(Ci.nsIInterfaceRequestor)
.getInterface(Ci.nsIWebNavigation)
.QueryInterface(Ci.nsILoadContext)
.usePrivateBrowsing;
}
};