A part of https://bugzilla.mozilla.org/show_bug.cgi?id=1667455 <https://bugzilla.mozilla.org/show_bug.cgi?id=1667455> patch stack is going to be landed shortly, that removes all in-tree `Services.jsm` consumers, while keeping `Services.jsm` file itself in tree, due to dependency from in-tree signed quitter.xpi (https://bugzilla.mozilla.org/show_bug.cgi?id=1777906 <https://bugzilla.mozilla.org/show_bug.cgi?id=1777906>).
The remaining patches that removes `Services.jsm` file will be landed shortly after the quitter.xpi gets updated. > 2022/07/04 10:51、Tooru Fujisawa <[email protected]>のメール: > > Hi everyone! > > https://bugzilla.mozilla.org/show_bug.cgi?id=1667455 is going to remove > Services.jsm and define `Services` global property on all privileged globals. > That means the statement like the following is no longer necessary (and > doesn't work) once the patch lands. > > const { Services } = > ChromeUtils.import("resource://gre/modules/Services.jsm"); > > Also, sandboxes will get `Services` global property if `wantComponents` > option is true (it defaults to true). > > If there's any out-of-tree code that needs to support both before/after > binary, you could do something like the following > > const Services = globalThis.Services || > ChromeUtils.import("resource://gre/modules/Services.jsm").Services; > -- You received this message because you are subscribed to the Google Groups "[email protected]" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/a/mozilla.org/d/msgid/dev-platform/705439EA-0B6F-4EE2-94DF-44AF72DA21A4%40gmail.com.
