OLD | NEW |
(Empty) | |
| 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 5 <link rel="import" href="about_page_browser_proxy.html"> |
| 6 <link rel="import" href="../settings_shared_css.html"> |
| 7 |
| 8 <dom-module id="settings-update-warning-dialog"> |
| 9 <template> |
| 10 <style include="settings-shared"></style> |
| 11 <dialog is="cr-dialog" id="dialog" close-text="$i18n{close}"> |
| 12 <div class="title">$i18n{aboutUpdateWarningTitle}</div> |
| 13 <div class="body"> |
| 14 <div id="update-warning-message"></div> |
| 15 </div> |
| 16 <div class="button-container"> |
| 17 <paper-button id="cancel" class="cancel-button" |
| 18 on-tap="onCancelTap_">$i18n{cancel}</paper-button> |
| 19 <paper-button id="continue" class="action-button" |
| 20 on-tap="onContinueTap_"> |
| 21 $i18n{aboutUpdateWarningContinue} |
| 22 </paper-button> |
| 23 </div> |
| 24 </dialog> |
| 25 </template> |
| 26 <script src="update_warning_dialog.js"></script> |
| 27 </dom-module> |
OLD | NEW |