Bug 1036220 - Get rid of the dom.mozAlarms.enabled pref. r=nsm r=smaug

This commit is contained in:
Reuben Morais 2014-07-15 16:21:15 -03:00
parent bb157707dd
commit b2186eb2ee
13 changed files with 135 additions and 176 deletions

View File

@ -437,9 +437,6 @@ pref("dom.phonenumber.substringmatching.VE", 7);
pref("dom.phonenumber.substringmatching.CL", 8);
pref("dom.phonenumber.substringmatching.PE", 7);
// WebAlarms
pref("dom.mozAlarms.enabled", true);
// SimplePush
pref("services.push.enabled", true);
// Debugging enabled.

View File

@ -199,9 +199,6 @@
}
function startTests() {
SpecialPowers.pushPrefEnv({
"set": [["dom.mozAlarms.enabled", true]]
}, function() {
var isAllowedToTest = true;
if (navigator.appVersion.indexOf("Android") !== -1) {
@ -227,7 +224,6 @@
SimpleTest.finish();
}
});
}
SimpleTest.expectAssertions(0, 9);

View File

@ -99,9 +99,6 @@
}
function startTests() {
SpecialPowers.pushPrefEnv({
"set": [["dom.mozAlarms.enabled", true]]
}, function() {
var isAllowedToTest = true;
if (navigator.appVersion.indexOf("Android") !== -1) {
@ -127,7 +124,6 @@
SimpleTest.finish();
}
});
}
SimpleTest.expectAssertions(0, 9);

View File

@ -117,9 +117,6 @@
}
function startTests() {
SpecialPowers.pushPrefEnv({
"set": [["dom.mozAlarms.enabled", true]]
}, function() {
var isAllowedToTest = true;
if (navigator.appVersion.indexOf("Android") !== -1) {
@ -151,7 +148,6 @@
SimpleTest.finish();
}
});
}
SimpleTest.expectAssertions(0, 9);

View File

@ -13,14 +13,11 @@
"use strict";
SimpleTest.waitForExplicitFinish();
if (SpecialPowers.hasPermission("alarms", document)) {
SpecialPowers.removePermission("alarms", document);
window.location.reload();
} else {
SpecialPowers.pushPrefEnv({"set": [["dom.mozAlarms.enabled", true]]}, function() {
SpecialPowers.removePermission("alarms", document);
// mozAlarms is installed on all platforms except Android for the moment.
if (navigator.appVersion.indexOf("Android") != -1) {
ok(!('mozAlarms' in navigator),
@ -34,8 +31,6 @@ if (SpecialPowers.hasPermission("alarms", document)) {
"Interface AlarmsManager should not exist without permission");
}
SpecialPowers.addPermission("alarms", true, document);
SimpleTest.finish();
});
}
</script>
</pre>

View File

@ -13,9 +13,6 @@
"use strict";
SimpleTest.waitForExplicitFinish();
SpecialPowers.pushPrefEnv({"set": [["dom.mozAlarms.enabled", true]]}, function() {
SpecialPowers.addPermission("alarms", true, document);
// mozAlarms is installed on all platforms except Android for the moment.
@ -35,9 +32,6 @@ SpecialPowers.pushPrefEnv({"set": [["dom.mozAlarms.enabled", true]]}, function()
"navigator.mozAlarms should be an instance of AlarmsManager");
}
SimpleTest.finish();
});
</script>
</pre>
</body>

View File

@ -72,9 +72,6 @@
}
function startTests() {
SpecialPowers.pushPrefEnv({
"set": [["dom.mozAlarms.enabled", true]]
}, function() {
var isAllowedToTest = true;
if (navigator.appVersion.indexOf("Android") !== -1) {
@ -100,7 +97,6 @@
SimpleTest.finish();
}
});
}
SimpleTest.expectAssertions(0, 9);

View File

@ -46,8 +46,6 @@
}
function startTests() {
SpecialPowers.pushPrefEnv({"set": [["dom.mozAlarms.enabled", true]]}, function() {
// Currently applicable only on FxOS
if (navigator.userAgent.indexOf("Mobile") != -1 &&
navigator.appVersion.indexOf("Android") == -1)
@ -57,7 +55,6 @@
ok(true, "mozAlarms on Firefox OS only.");
SimpleTest.finish();
}
});
}
SimpleTest.expectAssertions(0, 9);

View File

@ -25,7 +25,6 @@ var gData = [
skip: ["Android"],
obj: "mozAlarms",
webidl: "AlarmsManager",
settings: [["dom.mozAlarms.enabled", true]],
},
]
</script>

View File

@ -113,7 +113,7 @@ var legacyMozPrefixedInterfaces =
var interfaceNamesInGlobalScope =
[
// IMPORTANT: Do not change this list without review from a DOM peer!
{name: "AlarmsManager", pref: "dom.mozAlarms.enabled"},
{name: "AlarmsManager", permission: "alarms"},
// IMPORTANT: Do not change this list without review from a DOM peer!
"AnalyserNode",
// IMPORTANT: Do not change this list without review from a DOM peer!

View File

@ -8,8 +8,7 @@
[NavigatorProperty="mozAlarms",
JSImplementation="@mozilla.org/alarmsManager;1",
CheckPermissions="alarms",
Pref="dom.mozAlarms.enabled"]
CheckPermissions="alarms"]
interface AlarmsManager {
DOMRequest getAll();
DOMRequest add(any date, DOMString respectTimezone, optional any data);

View File

@ -3972,9 +3972,6 @@ pref("dom.mozContacts.enabled", false);
pref("dom.navigator-property.disable.mozContacts", true);
pref("dom.global-constructor.disable.mozContact", true);
// WebAlarms
pref("dom.mozAlarms.enabled", false);
// SimplePush
pref("services.push.enabled", false);

View File

@ -55,9 +55,6 @@ pref("dom.mozPay.enabled", true);
// System messages
pref("dom.sysmsg.enabled", true);
// Alarm API
pref("dom.mozAlarms.enabled", true);
// Disable slow script dialog for apps
pref("dom.max_script_run_time", 0);
pref("dom.max_chrome_script_run_time", 0);