From an extension running in FX I need to call TB with special startup
parameters. For that I use
> var go4Process = Components.classes["@
mozilla.org/process/util;1"]
> .createInstance(Components.interfaces.nsIProcess);
>
> go4Process.run(false, args, args.length);
With the AMO validation report I get:
Warning: Access to the 'nsIProcess' property is deprecated for security
or other reasons.
Is there a need to change that call; what would be the alternative?