mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 13:18:45 +02:00
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
10 lines
252 B
Text
10 lines
252 B
Text
[ Func="mozilla::AddonManagerWebAPI::IsAPIEnabled",
|
|
Constructor(DOMString type, AddonEventInit eventInitDict)]
|
|
interface AddonEvent : Event {
|
|
readonly attribute DOMString id;
|
|
};
|
|
|
|
dictionary AddonEventInit : EventInit {
|
|
required DOMString id;
|
|
};
|
|
|