| 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/i18n_behavior.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 5 <link rel="import" href="/settings_shared_css.html"> |
| 6 |
| 7 <dom-module id="settings-drive-cache-dialog"> |
| 8 <template> |
| 9 <style include="settings-shared"> |
| 10 #dialog { |
| 11 width: 512px; |
| 12 } |
| 13 </style> |
| 14 <dialog is="cr-dialog" id="dialog"> |
| 15 <div class="title">$i18n{storageClearDriveCacheDialogTitle}</div> |
| 16 <div class="body"> |
| 17 <span>$i18n{storageClearDriveCacheDialogDescription}</span> |
| 18 </div> |
| 19 <div class="button-container"> |
| 20 <paper-button id="cancelButton" class="cancel-button" |
| 21 on-tap="onCancelTap_"> |
| 22 $i18n{cancel} |
| 23 </paper-button> |
| 24 <paper-button id="deleteButton" class="action-button" |
| 25 on-tap="onDeleteTap_"> |
| 26 $i18n{storageDeleteAllButtonTitle} |
| 27 </paper-button> |
| 28 </div> |
| 29 </dialog> |
| 30 </template> |
| 31 <script src="/device_page/drive_cache_dialog.js"></script> |
| 32 </dom-module> |
| OLD | NEW |