зеркало из https://github.com/mozilla/gecko-dev.git
18 строки
499 B
JavaScript
18 строки
499 B
JavaScript
let Ci = Components.interfaces;
|
|
let Cc = Components.classes;
|
|
let Cu = Components.utils;
|
|
|
|
// Stolen from SpecialPowers, since at this point we don't know we're in a test.
|
|
let isMainProcess = function() {
|
|
try {
|
|
return Cc["@mozilla.org/xre/app-info;1"].
|
|
getService(Ci.nsIXULRuntime).
|
|
processType == Ci.nsIXULRuntime.PROCESS_TYPE_DEFAULT;
|
|
} catch (e) { }
|
|
return true;
|
|
};
|
|
|
|
if (isMainProcess()) {
|
|
Components.utils.import("resource://gre/modules/SettingsRequestManager.jsm");
|
|
}
|