mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 21:58:41 +02:00
33 lines
869 B
JavaScript
33 lines
869 B
JavaScript
let {classes: Cc, interfaces: Ci, utils: Cu} = Components;
|
|
|
|
Cu.import("resource:///modules/experiments/Experiments.jsm");
|
|
|
|
let gStarted = false;
|
|
|
|
function startup(data, reasonCode) {
|
|
if (gStarted) {
|
|
return;
|
|
}
|
|
gStarted = true;
|
|
|
|
// delay realstartup to trigger the race condition
|
|
Cc['@mozilla.org/thread-manager;1'].getService(Ci.nsIThreadManager)
|
|
.mainThread.dispatch(realstartup, 0);
|
|
}
|
|
|
|
function realstartup() {
|
|
let experiments = Experiments.instance();
|
|
let experiment = experiments._getActiveExperiment();
|
|
if (experiment.branch) {
|
|
Cu.reportError("Found pre-existing branch: " + experiment.branch);
|
|
return;
|
|
}
|
|
|
|
let branch = "racy-set";
|
|
experiments.setExperimentBranch(experiment.id, branch)
|
|
.then(null, Cu.reportError);
|
|
}
|
|
|
|
function shutdown() { }
|
|
function install() { }
|
|
function uninstall() { }
|