author | Felipe Gomes <felipc@gmail.com> |
Mon, 21 Mar 2016 15:00:21 -0300 | |
changeset 289684 | 551375db18bf7dc0585e3f5466f3c1c12a05f9b1 |
parent 289683 | 092c3fff5ec95fca42b59eafa14be2ab188c8b7d |
child 289685 | 52c1e3e2fcfb5285f563b8912cc7c74cebcaac1e |
push id | 30108 |
push user | cbook@mozilla.com |
push date | Tue, 22 Mar 2016 11:14:31 +0000 |
treeherder | mozilla-central@ea6298e1b4f7 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | me |
bugs | 1257972 |
milestone | 48.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/browser/extensions/e10srollout/bootstrap.js +++ b/browser/extensions/e10srollout/bootstrap.js @@ -110,10 +110,10 @@ function optedOut() { // they are still part of the threshold. return Preferences.get(PREF_E10S_FORCE_DISABLED, false) || (Preferences.isSet(PREF_TOGGLE_E10S) && Preferences.get(PREF_TOGGLE_E10S) == false); } function isThereAnActiveExperiment() { let { Experiments } = Cu.import("resource:///modules/experiments/Experiments.jsm", {}); - return (Experiments.instance().getActiveExperiment() !== null); + return (Experiments.instance().getActiveExperimentID() !== null); }