blob: a79c2c963a5e2cc83b015f6243ca08865d09d647 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
var Cm = Components.manager;
// Required to avoid failures.
do_get_profile();
var { XPCOMUtils } = ChromeUtils.import(
"resource://gre/modules/XPCOMUtils.jsm"
);
ChromeUtils.import("resource://testing-common/AppInfo.jsm", this);
updateAppInfo({
name: "XPCShell",
ID: "xpcshell@tests.mozilla.org",
version: "1",
platformVersion: "",
});
function addResourceAlias() {
const { Services } = ChromeUtils.import(
"resource://gre/modules/Services.jsm"
);
const handler = Services.io
.getProtocolHandler("resource")
.QueryInterface(Ci.nsIResProtocolHandler);
let modules = ["common", "crypto", "settings"];
for (let module of modules) {
let uri = Services.io.newURI(
"resource://gre/modules/services-" + module + "/"
);
handler.setSubstitution("services-" + module, uri);
}
}
addResourceAlias();
|