blob: b333dca3db5d97aa5ee08cc71d58e9ef110fb525 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'chrome://resources/cr_elements/cr_button/cr_button.m.js';
import 'chrome://resources/cr_elements/cr_dialog/cr_dialog.m.js';
import 'chrome://resources/cr_elements/shared_style_css.m.js';
import 'chrome://resources/polymer/v3_0/paper-styles/color.js';
import './code_section.js';
import {html, Polymer} from 'chrome://resources/polymer/v3_0/polymer/polymer_bundled.min.js';
Polymer({
is: 'extensions-install-warnings-dialog',
_template: html`{__html_template__}`,
properties: {
/** @type {!Array<string>} */
installWarnings: Array,
},
/** @override */
attached: function() {
this.$.dialog.showModal();
},
/** @private */
onOkTap_: function() {
this.$.dialog.close();
},
});