/* 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 http://mozilla.org/MPL/2.0/. */ import { html } from "chrome://global/content/vendor/lit.all.mjs"; import { MozLitElement } from "chrome://global/content/lit-utils.mjs"; /** * The widget for disabling password protection if the backup is already * encrypted. */ export default class DisableBackupEncryption extends MozLitElement { static get queries() { return { cancelButtonEl: "#backup-disable-encryption-cancel-button", confirmButtonEl: "#backup-disable-encryption-confirm-button", }; } /** * Dispatches the BackupUI:InitWidget custom event upon being attached to the * DOM, which registers with BackupUIChild for BackupService state updates. */ connectedCallback() { super.connectedCallback(); this.dispatchEvent( new CustomEvent("BackupUI:InitWidget", { bubbles: true }) ); } handleCancel() { this.dispatchEvent( new CustomEvent("dialogCancel", { bubbles: true, composed: true, }) ); } handleConfirm() { this.dispatchEvent( new CustomEvent("disableEncryption", { bubbles: true, composed: true, }) ); } contentTemplate() { return html`

`; } render() { return html` ${this.contentTemplate()} `; } } customElements.define("disable-backup-encryption", DisableBackupEncryption);