gecko-dev/dom/webidl/AddonEvent.webidl
Andrew Swan 574677d5a2 Bug 1524325 Remove AddonEvent.needsRestart r=bzbarsky,kmag
We haven't supported addons that require restarts in some time
and a bunch of the underlying support for this flag is already gone
from the addons manager.  The mozAddonManager api is one of the
last vestiges, this patch rips it out.

Differential Revision: https://phabricator.services.mozilla.com/D18745

--HG--
extra : moz-landing-system : lando
2019-02-07 20:47:14 +00:00

11 lines
252 B
Plaintext

[ Func="mozilla::AddonManagerWebAPI::IsAPIEnabled",
Constructor(DOMString type, AddonEventInit eventInitDict)]
interface AddonEvent : Event {
readonly attribute DOMString id;
};
dictionary AddonEventInit : EventInit {
required DOMString id;
};