| <link rel="import" href="chrome://resources/html/polymer.html"> |
| |
| <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html"> |
| <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-button.html"> |
| <link rel="import" href="about_page_browser_proxy.html"> |
| <link rel="import" href="../settings_shared_css.html"> |
| |
| <dom-module id="settings-update-warning-dialog"> |
| <template> |
| <style include="settings-shared"></style> |
| <dialog is="cr-dialog" id="dialog" close-text="$i18n{close}"> |
| <div slot="title">$i18n{aboutUpdateWarningTitle}</div> |
| <div slot="body"> |
| <div id="update-warning-message"></div> |
| </div> |
| <div slot="button-container"> |
| <paper-button id="cancel" class="cancel-button" |
| on-click="onCancelTap_">$i18n{cancel}</paper-button> |
| <paper-button id="continue" class="action-button" |
| on-click="onContinueTap_"> |
| $i18n{aboutUpdateWarningContinue} |
| </paper-button> |
| </div> |
| </dialog> |
| </template> |
| <script src="update_warning_dialog.js"></script> |
| </dom-module> |