Files
tubestation/browser/components/backup/BackupResources.sys.mjs
Noemi Erli 2a3644d25e Backed out changeset 4816ddcf03ba (bug 1883739) for causing failures in test_measurements.js CLOSED TREE
browser/components/backup/metrics.yaml HG: changed browser/components/backup/moz.build HG: changed browser/components/backup/tests/xpcshell/test_measurements.js HG: changed toolkit/components/telemetry/Scalars.yaml HG: removed
browser/components/backup/resources/PreferencesBackupResource.sys.mjs
2024-03-21 01:16:11 +02:00

16 lines
680 B
JavaScript

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
import { CredentialsAndSecurityBackupResource } from "resource:///modules/backup/CredentialsAndSecurityBackupResource.sys.mjs";
import { PlacesBackupResource } from "resource:///modules/backup/PlacesBackupResource.sys.mjs";
/**
* Classes exported here are registered as a resource that can be
* backed up and restored in the BackupService.
*
* They must extend the BackupResource base class.
*/
export { CredentialsAndSecurityBackupResource, PlacesBackupResource };