1
0
Fork 0
firefox/browser/components/migration/tests/head-common.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

24 lines
797 B
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
const { MigrationWizardConstants } = ChromeUtils.importESModule(
"chrome://browser/content/migration/migration-wizard-constants.mjs"
);
/**
* Returns the constant strings from MigrationWizardConstants.DISPLAYED_RESOURCE_TYPES
* that aren't also part of MigrationWizardConstants.PROFILE_RESET_ONLY_RESOURCE_TYPES.
*
* This is the set of resources that the user can actually choose to migrate via
* checkboxes.
*
* @returns {string[]}
*/
function getChoosableResourceTypes() {
return Object.keys(MigrationWizardConstants.DISPLAYED_RESOURCE_TYPES).filter(
resourceType =>
!MigrationWizardConstants.PROFILE_RESET_ONLY_RESOURCE_TYPES[resourceType]
);
}