2011-12-07 17:12:58 -08:00
|
|
|
let gSyncProfile;
|
2010-12-14 15:50:50 -08:00
|
|
|
|
2011-05-20 18:45:51 -07:00
|
|
|
do_load_httpd_js();
|
2011-12-07 17:12:58 -08:00
|
|
|
gSyncProfile = do_get_profile();
|
2010-06-22 00:20:31 -07:00
|
|
|
|
|
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
|
|
|
|
|
|
// Make sure to provide the right OS so crypto loads the right binaries
|
|
|
|
let OS = "XPCShell";
|
|
|
|
if ("@mozilla.org/windows-registry-key;1" in Cc)
|
|
|
|
OS = "WINNT";
|
|
|
|
else if ("nsILocalFileMac" in Ci)
|
|
|
|
OS = "Darwin";
|
|
|
|
else
|
|
|
|
OS = "Linux";
|
|
|
|
|
|
|
|
let XULAppInfo = {
|
|
|
|
vendor: "Mozilla",
|
|
|
|
name: "XPCShell",
|
|
|
|
ID: "{3e3ba16c-1675-4e88-b9c8-afef81b3d2ef}",
|
|
|
|
version: "1",
|
|
|
|
appBuildID: "20100621",
|
|
|
|
platformVersion: "",
|
|
|
|
platformBuildID: "20100621",
|
|
|
|
inSafeMode: false,
|
|
|
|
logConsoleErrors: true,
|
|
|
|
OS: OS,
|
|
|
|
XPCOMABI: "noarch-spidermonkey",
|
|
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsIXULAppInfo, Ci.nsIXULRuntime])
|
|
|
|
};
|
|
|
|
|
|
|
|
let XULAppInfoFactory = {
|
|
|
|
createInstance: function (outer, iid) {
|
|
|
|
if (outer != null)
|
|
|
|
throw Cr.NS_ERROR_NO_AGGREGATION;
|
|
|
|
return XULAppInfo.QueryInterface(iid);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let registrar = Components.manager.QueryInterface(Ci.nsIComponentRegistrar);
|
|
|
|
registrar.registerFactory(Components.ID("{fbfae60b-64a4-44ef-a911-08ceb70b9f31}"),
|
|
|
|
"XULAppInfo", "@mozilla.org/xre/app-info;1",
|
|
|
|
XULAppInfoFactory);
|
|
|
|
|
2010-06-23 07:28:10 -07:00
|
|
|
|
2011-03-25 00:57:23 -07:00
|
|
|
// Register resource aliases. Normally done in SyncComponents.manifest.
|
|
|
|
function addResourceAlias() {
|
|
|
|
Cu.import("resource://gre/modules/Services.jsm");
|
|
|
|
const resProt = Services.io.getProtocolHandler("resource")
|
|
|
|
.QueryInterface(Ci.nsIResProtocolHandler);
|
|
|
|
let uri;
|
|
|
|
uri = Services.io.newURI("resource:///modules/services-sync/", null, null);
|
|
|
|
resProt.setSubstitution("services-sync", uri);
|
|
|
|
uri = Services.io.newURI("resource:///modules/services-crypto/", null, null);
|
|
|
|
resProt.setSubstitution("services-crypto", uri);
|
|
|
|
}
|
|
|
|
addResourceAlias();
|