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
16 lines
680 B
JavaScript
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 };
|