Go to the source code of this file.
function EventItem |
( |
|
aType, |
|
|
|
aData |
|
) |
| |
function extApplication |
( |
| ) |
|
function Extension |
( |
|
aItem | ) |
|
function Preference |
( |
|
aName, |
|
|
|
aBranch |
|
) |
| |
function PreferenceBranch |
( |
|
aBranch | ) |
|
function SessionStorage |
( |
| ) |
|
Initial value:= {
log :
function cs_log(aMsg) {
this._console.logStringMessage(aMsg);
},
open :
function cs_open() {
var wMediator = Components.classes["@mozilla.org/appshell/window-mediator;1"]
.getService(
Ci.nsIWindowMediator);
var console = wMediator.getMostRecentWindow("global:console");
if (!console) {
var wWatch = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
.getService(
Ci.nsIWindowWatcher);
wWatch.openWindow(
null,
"chrome://global/content/console.xul",
"_blank",
"chrome,dialog=no,all",
null);
} else {
console.focus();
}
},
}
sbOSDControlService prototype QueryInterface
BogusChannel prototype open
Definition at line 52 of file extApplication.js.