mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-09 14:28:25 +00:00
574677d5a2
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
11 lines
252 B
Plaintext
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;
|
|
};
|
|
|