mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-28 15:23:51 +00:00
946e1ef0b5
In order to remove support for non-bootstrapped extensions, the remaining test automation extensions need to be migrated to bootstrapped extensions. These extensions all work by loading a single component, either with a profile-after-change or command line handler. This is a straightforward conversion of those components to bootstrap.js scripts. MozReview-Commit-ID: 5uyNSqRPIVR --HG-- rename : services/sync/tps/extensions/tps/components/tps-cmdline.js => services/sync/tps/extensions/tps/bootstrap.js rename : testing/talos/talos/pageloader/components/tp-cmdline.js => testing/talos/talos/pageloader/bootstrap.js rename : testing/talos/talos/startup_test/sessionrestore/addon/SessionRestoreTalosTest.js => testing/talos/talos/startup_test/sessionrestore/addon/bootstrap.js rename : testing/talos/talos/talos-powers/components/TalosPowersService.js => testing/talos/talos/talos-powers/bootstrap.js rename : tools/quitter/QuitterObserver.js => tools/quitter/bootstrap.js extra : rebase_source : 738264d0ec8701aa5cf93c6dac958d88756c1e55 extra : source : 71d65d6b64997bc608a1cb3c924be35bbd460b39
37 lines
1.2 KiB
XML
37 lines
1.2 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
xmlns:em="http://www.mozilla.org/2004/em-rdf#">
|
|
|
|
<Description about="urn:mozilla:install-manifest">
|
|
<em:id>quitter@mozilla.org</em:id>
|
|
<em:version>2018.03.19</em:version>
|
|
<em:type>2</em:type>
|
|
<em:bootstrap>true</em:bootstrap>
|
|
|
|
<!-- Target Application this extension can install into,
|
|
with minimum and maximum supported versions. -->
|
|
<em:targetApplication>
|
|
<Description>
|
|
<!-- Firefox -->
|
|
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
|
|
<em:minVersion>45</em:minVersion>
|
|
<em:maxVersion>*</em:maxVersion>
|
|
</Description>
|
|
</em:targetApplication>
|
|
<em:targetApplication>
|
|
<Description>
|
|
<!-- Fennec -->
|
|
<em:id>{aa3c5121-dab2-40e2-81ca-7ea25febc110}</em:id>
|
|
<em:minVersion>45</em:minVersion>
|
|
<em:maxVersion>*</em:maxVersion>
|
|
</Description>
|
|
</em:targetApplication>
|
|
|
|
<!-- Front End MetaData -->
|
|
<em:name>Quitter</em:name>
|
|
<em:description>Adds a quit method that content pages can use to quit the application.</em:description>
|
|
<em:creator>Mozilla</em:creator>
|
|
</Description>
|
|
</RDF>
|