| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> | 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 4 <link rel="import" href="../i18n_setup.html"> | 4 <link rel="import" href="../i18n_setup.html"> |
| 5 <link rel="import" href="../settings_shared_css.html"> | 5 <link rel="import" href="../settings_shared_css.html"> |
| 6 <link rel="import" href="certificates_browser_proxy.html"> | 6 <link rel="import" href="certificates_browser_proxy.html"> |
| 7 | 7 |
| 8 <dom-module id="settings-certificate-delete-confirmation-dialog"> | 8 <dom-module id="settings-certificate-delete-confirmation-dialog"> |
| 9 <template> | 9 <template> |
| 10 <style include="settings-shared"></style> | 10 <style include="settings-shared"></style> |
| 11 <dialog is="cr-dialog" id="dialog"> | 11 <dialog is="cr-dialog" id="dialog" close-text="$i18n{close}"> |
| 12 <div class="title">[[getTitleText_(model, certificateType)]]</div> | 12 <div class="title">[[getTitleText_(model, certificateType)]]</div> |
| 13 <div class="body"> | 13 <div class="body"> |
| 14 <div>[[getDescriptionText_(model, certificateType)]]</div> | 14 <div>[[getDescriptionText_(model, certificateType)]]</div> |
| 15 </div> | 15 </div> |
| 16 <div class="button-container"> | 16 <div class="button-container"> |
| 17 <paper-button class="cancel-button" on-tap="onCancelTap_"> | 17 <paper-button class="cancel-button" on-tap="onCancelTap_"> |
| 18 $i18n{cancel} | 18 $i18n{cancel} |
| 19 </paper-button> | 19 </paper-button> |
| 20 <paper-button id="ok" class="action-button" on-tap="onOkTap_"> | 20 <paper-button id="ok" class="action-button" on-tap="onOkTap_"> |
| 21 $i18n{ok} | 21 $i18n{ok} |
| 22 </paper-button> | 22 </paper-button> |
| 23 </div> | 23 </div> |
| 24 </dialog> | 24 </dialog> |
| 25 </template> | 25 </template> |
| 26 <script src="certificate_delete_confirmation_dialog.js"></script> | 26 <script src="certificate_delete_confirmation_dialog.js"></script> |
| 27 </dom-module> | 27 </dom-module> |
| OLD | NEW |